Sei sulla pagina 1di 1

git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.

exe
' -multiInst -nosession -noPlugin"
git config --global core.editor "'C:/Windows/System32/notepad.exe'"
Check all branches merged into current branch:
git branch -a --merged
Delete BRANCHNAME:
git push origin --delete BRANCHNAME
Prune:
git remote prune origin
Create and checkout BRANCHNAME, then publish:
git checkout -b BRANCHNAME
git push origin BRANCHNAME
git push -u
Add and initiate commit of changes:
git commit -a

Potrebbero piacerti anche