GIT tips and tricks: Difference between revisions

From HPCWIKI
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
== Display progress ==
<code>git add --verbose .</code>


== Push new branch to server ==
== Push new branch to server ==

Latest revision as of 17:23, 18 May 2024

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