GIT tips and tricks

From HPCWIKI
Revision as of 17:23, 18 May 2024 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Display progress

git add --verbose .

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

References