Git memento: Difference between revisions
From Nasqueron Agora
Created page with "== Share a branch == If the repository uses the devserver /datacube/git folder: git switch -c foo git push datacube foo To share again: git switch -c foo git push datacube foo -f == Edit a change == git status git add <the files modified> git commit --amend arc diff HEAD^ Category:Reference" |
(No difference)
|
Latest revision as of 16:06, 18 November 2025
Share a branch
If the repository uses the devserver /datacube/git folder:
git switch -c foo git push datacube foo
To share again:
git switch -c foo git push datacube foo -f
Edit a change
git status git add <the files modified> git commit --amend arc diff HEAD^
