Xfce Wiki

Sub domains
 

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
contribute:dev:git:tips-and-tricks [2014/03/05 15:36] – [Pull over git:// push with ssh://] nickcontribute:dev:git:tips-and-tricks [2021/04/30 09:21] (current) ochosi
Line 1: Line 1:
 ====== GIT Tips & Tricks ====== ====== GIT Tips & Tricks ======
  
-===== Pull over git:// push with ssh:// ===== 
  
-You can switch to a different protocol or location for the push command. Advantage is that you can clone a repository using <nowiki>git://git.xfce.org/...</nowiki> which is faster than a ssh connection (no login, permission check and encryption), but push to ssh. 
  
-<file ini .gitconfig+===== Shortcut URL's ===== 
-[url "ssh://git@git.xfce.org"+ 
-    pushInsteadOf = "git://git.xfce.org"+ 
 +<file bash
 +git config --global url."ssh://gitlab.xfce.org/".insteadOf xfce: 
 +</file> 
 + 
 +After this, you'll be able to do, for example:  
 + 
 +<file bash> 
 +git clone xfce:xfce/xfdesktop
 </file> </file>