This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -delete the remote | |
| >> git push [remote] :[branch] | |
| -delete the local | |
| >> git branch -d [branch] | |
| ex. | |
| git push origin :dev1 | |
| git branch -d dev1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| >> git push [remote] [fork]:[branch] | |
| ex. | |
| git push dev1 ftdev1:master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ignore thumbnails created by windows | |
| Thumbs.db | |
| #Ignore files build by Visual Studio | |
| *.obj | |
| *.exe | |
| *.pdb | |
| *.user | |
| *.aps | |
| *.pch | |
| *.vspscc |
NewerOlder