GIT tips and tricks
Jump to navigation
Jump to search
Push new branch to server
#Push your new branch to server
#On new branch computer or node
$git push -u origin new-branch
#On server, verify the new branch
git pull --all
Git branch -a # user should be able to show the new-branch
Remove directory
git rm -r --cached foldername