`git checkout staging`
`git pull`
`git checkout -b ES-205 #create a new branch`
`git push --set-upstream origin ES-205 #push the new branch`
`git checkout staging`
`git revert _____ # revert the commits you made on staging`
The “coding” JumpList API is a bit odd to use, but still easy to understand:
var jt = new JumpTask
{
ApplicationPath = "C:\\Windows\\notepad.exe",
Arguments = "readme.txt",
Title = "Recent Entry for Notepad",
CustomCategory = "Dummy"
};
JumpList.AddToRecentCategory(jt);
var jt2 = new JumpTask
{
ApplicationPath = "C:\\Windows\\notepad.exe",
Arguments = "readme.txt",
Title = "Code Entry for Notepad",
CustomCategory = "Dummy"
};
var currentJumplist = JumpList.GetJumpList(App.Current);
currentJumplist.JumpItems.Add(jt2);
currentJumplist.Apply();
The “Apply()” call is needed, otherwise the new JumpItem will not be added. As you can see, you can create new JumpList entries, add (and I think you could also remove items) from the default recent category. Besides JumpTasks there is JumpPath, which just contains a link.
In the XAML Part I also hooked up some events, so your application can get notified when a user pins something or removes something which you might want to handle.
Wednesday, November 1, 2017
Reference to article
https://justenglish.me/2012/09/01/free-books-100-legal-sites-to-download-literature/