Tag: git
January 4, 2018
/ Blog
Using Git In Your Workflow
https://www.git-tower.com/learn/git/ebook/en/command-line/basics/working-on-your-project#start https://www.git-tower.com/blog/git-cheat-sheet/ to check file changes: $ git status Commonly used commands. 3 main categories: Changes not staged for commit…
January 4, 2018
/ Blog
How To Set Up A Text Editor To Work With Git On Windows
http://stackoverflow.com/questions/10564/how-can-i-set-up-an-editor-to-work-with-git-on-windows On 32 bit OS: $ git config –global core.editor “‘C:/Program Files/Notepad++/notepad++.exe’ -multiInst -notabbar -nosession -noPlugin” On 64 bit OS:…