Xfce Wiki

Sub domains
 

Differences

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

Link to this comparison view

Next revision
Previous revision
contribute:dev:git:userrepos [2014/03/03 15:58] – created ochosicontribute:dev:git:userrepos [2020/04/19 01:27] (current) ochosi
Line 1: Line 1:
-===== User repositories ===== 
  
-Contributors now have the possibility to create user repositories. This allows all developers with git permissions to create their own repository with the following wildcard: +====== Xfce user repositories ======
-  users/$name/[a-z0-9-]++
  
-This is useful when you have no permission to commit upstream to xfwm4 directly, but you want a +<note important>Please note that this page is obsolete with the go-live of gitlab.xfce.org!</note>
-branch to build new features or fix bugs and have others test it out:+
  
-=== 1. Clone the source repository === +Contributors now have the ability to create [[http://git.xfce.org/users/|user repositories]]. This allows all developers with git permissions to create their own repository with the following wildcard:
-  git clone git://git.xfce.org/xfce/xfwm4+
  
-=== 2. Add your user repository === +  users/$user/[a-z0-9-]+
-  git remote add private ssh://git@git.xfce.org/users/your-user-name/xfwm4+
  
-=== 3Create a branch === +This is useful when you do not have permission to commit upstream directly or you want to work on some code privately without bothering other developersCompared to upstream repositories, user repositories have more permissions (for the creator):
-  git checkout -b fix-for-bug-1234+
  
-=== 4. Make changes ===+  * You can create any branch name and delete them 
 +  * It is possible to rewind push / loose commits (see the ''git-push -f'' command) 
 +  * You can decide which other users have write access to your repository as well, see below 
 +  * No notification emails are sent to the xfce4-commits mailing list
  
-=== 5. Push the branch to your own user repository === +As with developers with up-stream access rights, it is always advised to work on large patches in a user repository first.
-  git push private+
  
-Repos are [[http://git.xfce.org/users/|listed here]] and with ''ssh git@git.xfce.org'' you can see your @C permission.+<note>It is also possible to use the [[github|GitHub mirror]] for user repositories. That said, the user repositories in Xfce look a bit more professional if you already have access to the git.xfce.org server.</note> 
 + 
 +===== Push to a private repository ===== 
 + 
 +Most often you will continue from the upstream repository and then push your changes on top of that to your user repo branch. If so, follow the steps below: 
 + 
 +<file bash> 
 +# clone the upstream repository 
 +git clone git://git.xfce.org/xfce/xfwm4 
 + 
 +# add a new remote repository with the name 'private' 
 +git remote add private ssh://git@git.xfce.org/users/$user/xfwm4 
 + 
 +# create a new branch 
 +# note we give the local branch name a different name so you can see to which remote it points 
 +git checkout -b private-bug-1234 
 + 
 +# improve the code and make commits 
 +   
 +# push you changes 
 +# the first time you do this, the server will create the repository if needed 
 +git push -u private private-bug-1234 
 +</file> 
 + 
 +Then, wait for a few minutes for the git repo to be available on https://git.xfce.org interface. 
 + 
 +===== Repository maintenance ===== 
 + 
 +There are a couple of commands for [[https://git-scm.com/book/en/v1/Git-on-the-Server-Gitolite|Gitolite]] needed to maintain your private repository. 
 + 
 + 
 + 
 +==== Fast forward ==== 
 + 
 +Note that you can't use non fast-forward pushes. However in user branches, you can remove, then repush your work. 
 + 
 +<file bash> 
 +git push user :branch ; git push user branch 
 +</file> 
 +==== Give other users write access ==== 
 + 
 +By default, you are the only user with write access to the repository. To allow others to push changes as well (they can only push forward commits, and have no rights to create and delete), use the following command: 
 + 
 +<file bash>ssh git@git.xfce.org perms users/$user/$repo + WRITERS $otheruser</file> 
 + 
 +To revoke permissions, the same command as above is used, but with the minus-sign. 
 +<file bash>ssh git@git.xfce.org perms users/$user/$repo - WRITERS $otheruser</file> 
 + 
 +For more options, like listing permissions, see the usage help of the ''perms'' command: 
 + 
 +<file bash>ssh git@git.xfce.org perms -h</file> 
 + 
 +==== Deleting your user repositories ==== 
 + 
 +If you finished work in your user repository and it has been merged into the mainline, you can delete it from the server. Only the creator of the repo can delete it. Deleting is not done by removing all of the branches through ''git push'', but rather with ssh commands on the server. For help on this command run the following command in a terminal: 
 + 
 + 
 +<file bash>ssh git@git.xfce.org D -h</file> 
 + 
 +For example, you can delete the xfwm4 repository we created earlier as follows: 
 + 
 +<file bash># unlock the repository to allow deletion 
 +ssh git@git.xfce.org D unlock users/$user/xfwm4 
 + 
 +# remove the repository from the server 
 +ssh git@git.xfce.org D rm users/$user/xfwm4 
 +</file>