Git memento

From Nasqueron Agora
Revision as of 16:06, 18 November 2025 by Dereckson (talk | contribs) (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")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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^