You are here
Taha - Tue, 2010/09/14 - 00:09
Hi i'm new to linux and redmine in general. I need help seting up a new git repository for a new git project. if someone could point me to the right direction in how to do this it will be very helpful.
thank you
Forum:
The Redmine appliance comes
The Redmine appliance comes with Git already installed. You would just need to set up a new repository with git init and then tell your Redmine project where the repo is at. Repositories are stored in /srv/repos. Is there something specific you need help with? If you need help with learning git, I would suggest:
Well basically thats what im
Well basically thats what im looking for how to set up the git repository in TKL Redmine, like the procedure of how to setup that git repo under linux. Coming from windows and getting into linux for the first time is quite a jump specially when working in console. So basically yeah im just looking for how to setup the git repo so i can link it to redmine and upload source to that repo.
Thanks for the links above i'll look through them. but basically i need help with 2 things 1) being the setup of the git repo and 2) uploading the source on the git repo.
Thanks
Here's a quick rundown
Here's a quick rundown
Log into your server using SSH.
Go to the /srv/repos directory. I believe there is a git folder there that you can go into and see the sample repo: cd /srv/repos/git
Create a repo with the git init command: git init <repo name> This will create a directory and also the .git subdirectory. Go into your repo: cd <repo name>
Create a file: touch readme
Add it to the repo: git add readme
Commit the changes: git commit -m "Initial commit"
Now log into Redmine and into the project. Go to Settings then Repository.
Select Git as the SCM and input the path to your git directory: /srv/repos/<name>
Save it then go to the Repositories tab. You should see your repo with the readme file you created.
To check out a copy on your workstation you can use the git clone command: git clone git://<address>/git/<name>
After you make changes and commit you can push it back: git push origin master
After you push you will need to go into the Repositories tab to have Redmine update it. There are ways to schedule this or add it into a hook, but I haven't personally set one up.
You should read those resources to understand more about git. I've been using it for a little while and keep learning new things.
Thanks for the info... but
Thanks for the info... but now i'm getting this weird error, when i try to clone the repository.
Initialized empty Git repository in /home/user/RTU_CommLib/RTU_CommLib/.git/
fatal: The remote end hung up unexpectedly
My Redmine is setup properly i can see all my git repositories in there its that that i can clone the repository
It may be an authentication issue.
It may be an authentication issue. I usually do all mine via ssh. You can do something like this:
See if you can access it with the root username and password.
Thanks that worked out... i
Thanks that worked out... i just wanted to know one thing.
i committed a file using
then pushed it back using
so now i can see the file on redmine appear on redmine as being committed but i dont see it physically in the repository when i browse to
is that normal?? i would think that if i can see it on redmine i should also be able to see it physically in the repository.
The database is contained in
The database is contained in the .git directory. It contains all the data of all the branches and every commit. The RTU_CommLib directory contains the database along with what is known as the working tree. When you push to the git repository, you are updating what is in the database, but the working tree doesn't change. If you want to have an updated set of files you will need to perform a checkout or a hard reset. You can make the server do this automatically with a post-receive hook. Go on the server and create a file called /srv/repos/git/RTU_CommLib/.git/hooks/post-receive if it is not already there.
Paste this script in the file:
#!/bin/sh cd /srv/repos/git/RTU_CommLib env -i git reset --hard master
This will set your working tree to what is currently in the master branch. (There are other ways to do what you want, this is just one.) After you save it you will need to make sure the hook is executable
Now the next time you push to your repo on the server, the server will perform a hard reset and the working tree files will match latest commit.
Install Git
when i try to install visual studion for git, i get this message :
There is a problem with the windows installer package. A program run as part of setup did not finish as expected. COntact your support personnel or package vendor.
any one met this case? thanks in advance
Just a small guide
Well, after having read some post with people that have got troubles setting up git, and as i also got some problems, since it was the first time i've used git, i've written this small guide, for creating a repository from the scratch, setting it up, and also setting up your local environment:
Step 1) At TKL Redmine VM console
Change to the directory where the repository will be created, typically:
cd /srv/repos/git/
Create a bare directory
git init --bare --shared redminetest.git
Steo 2) At your local machine, where you are gonna work locally
This are the steps for setting up your local environment, linked to the newly created repository in your VM
First, let's check out the repository, then perform the initial commit
Enter your root's VM password when prompted and go the newly created directory
cd redminetest
Create a new file
touch test.txt
Add it to your local git env
git add test.txt
Commit it to your local git env
git commit -m "Initial commit"
Commit it to your VM central repository
git push origin master
Step 3) In Redmine Web interface
Hope this helps
Iván
Thanks Ivan
Nice post. I think that we should put that into the docs, perhaps under Tutorials / HOWTOs?
Add new comment