meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
git:start [2016/09/07 10:34] niziakgit:start [2023/05/30 10:28] niziak
Line 1: Line 1:
-GIT PAGE+====== GIT ====== 
 ====== Preparation ====== ====== Preparation ======
 +
 === git-email === === git-email ===
 <code bash> <code bash>
Line 7: Line 9:
 git config sendemail.suppressfrom true git config sendemail.suppressfrom true
 </code> </code>
 +
 +=== replace github's git:// links ===
 +NOTE: Github was disabled git protocol. So only https:// or ssh is valid.
 +
 +<code bash>
 +git config --global url.https://github.com/daurnimator/lua-systemd.insteadOf git://github.com/daurnimator/lua-systemd
 +# or
 +git config --global url.https://.insteadOf git://
 +</code>
 +
 +Keywords: git protocol, git:// protocol
 +
 +=== replace github https links ===
 +<code bash>git config --global url.git@github.com:.insteadOf https://github.com/</code>
 +
 +====== Import HG (mercurial) repo ======
 +<code bash>
 +sudo apt-get install hg-fast-export
 +git init
 +hg-fast-export -r .
 +</code>
 +
 +
 +====== Usage ======
 +
 +==== fetch moved tags ====
 +<code bash>git fetch origin --tags --force</code>
  
 ==== Undo a commit ==== ==== Undo a commit ====
Line 19: Line 48:
 </code> </code>
  
-==== Usage ==== 
  
 ==== Local copy of one branch from public repo ==== ==== Local copy of one branch from public repo ====