How do I clone a specific Git branch? - Stack Overflow
...Git clone will clone remote branch into local. Is there any way to clone a specific branch by myself without switching branches on the remote repository?...
https://stackoverflow.com/questions/1911109/how-do-i-clone-a-specific-git-branch
git - How do I delete a commit from a branch? - Stack Overflow
...I think this is not a duplicate of Git undo last commit as it asks how to delete any commit from a branch. I also think non of the answers actually address this question. They all rewind the last commits, not cherry-pick and delete a single commit that may occurred a while ago....
https://stackoverflow.com/questions/1338728/how-do-i-delete-a-commit-from-a-branch
How do I delete a Git branch locally and remotely?
...Don't forget to do a git fetch --all --prune on other machines after deleting the remote branch on the server. ||| After deleting the local branch with git branch -d and deleting the remote branch with git push origin --delete other machines may still have "obsolete tracking branches" (to see them do git branch -a). To get rid of these do git fetch --all --prune....
https://stackoverflow.com/questions/2003505/how-do-i-delete-a-git-branch-locally-and-remotely
github - How do I reverse a commit in git? - Stack Overflow
...I think you need to push a revert commit. So pull from github again, including the commit you want to revert, then use git revert and push the result. If you don't care about other people's clones of your github repository being broken, you can also delete and recreate the master branch on github after your reset: git push origin :master....
https://stackoverflow.com/questions/5381945/how-do-i-reverse-a-commit-in-git
Download a single folder or directory from a GitHub repository
...How can I download only a specific folder or directory from a remote Git repository hosted on GitHub? Say the example GitHub repository lives here: git@github.com:foobar/Test.git Its directory str......
https://stackoverflow.com/questions/7106012/download-a-single-folder-or-directory-from-a-github-repository
git - How do I modify a specific commit? - Stack Overflow
...I have the following commit history: HEAD HEAD~ HEAD~2 HEAD~3 git commit --amend modifies the current HEAD commit. But how do I modify HEAD~3?...
https://stackoverflow.com/questions/1186535/how-do-i-modify-a-specific-commit
Find out who is locking a file on a network share - Stack Overflow
...Just in case someone looking for a solution to this for a Windows based system or NAS: There is a built-in function in Windows that shows you what files on the local computer are open/locked by remote computer (which has the file open through a file share): Select "Manage Computer" (Open "Computer Management") click "Shared Folders" choose "Open Files" There you can even close the file forcefully....
https://stackoverflow.com/questions/581219/find-out-who-is-locking-a-file-on-a-network-share
How to run a PowerShell script from a batch file - Stack Overflow
...PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& {Start-Process PowerShell -ArgumentList '-NoProfile -ExecutionPolicy Bypass -File ""C:\Users\SE\Desktop\ps.ps1""' -Verb RunAs}" Rather than hard-coding the entire path to the PowerShell script though, I recommend placing the batch file and PowerShell script file in the same directory, as my blog post describes....
https://stackoverflow.com/questions/19335004/how-to-run-a-powershell-script-from-a-batch-file
git - Hard reset of a single file - Stack Overflow
...How do I discard the changes to a single file and overwrite it with a fresh HEAD copy? I want to do git reset --hard to only a single file....
https://stackoverflow.com/questions/7147270/hard-reset-of-a-single-file
Using "If cell contains #N/A" as a formula condition.
...I need help on my Excel sheet. How can I declare the following IF condition properly? if A1 = "n/a" then C1 = B1 else if A1 != "n/a" or has value(int) then C1 = A1*B1...
https://stackoverflow.com/questions/20962940/using-if-cell-contains-n-a-as-a-formula-condition