Tagged Questions
1
vote
1answer
55 views
Redmine: associated revisions not updating for non-master branches
I have redmine configured with a git repository. The repository updates properly, and I can browse through all repository branches in redmine with no problem. However, associated revisions don't ...
0
votes
2answers
46 views
git diff between 2 revisions included
I'm doing a :
git diff --diff-filter=AM --name-only 59ade6e..c1fc4d8
The 59ade6e hash is a commit where I added all my files (my first commit).
But when I execute my command it seems that it ...
1
vote
1answer
46 views
Local development with FB Login and collaborative Github workflow
My webapp is currently running off a shared googleDrive folder for easy updating and collaboration between a few developers. I am brining-on more developers though so I need a better workflow for ...
0
votes
1answer
442 views
Get ffmpeg source code at a specific revision
I know how to do it with SVN, but they've moved to Git.
The command for getting the newest version as described on their site is
git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg
What would be ...
0
votes
1answer
47 views
git get back sha-1 after checking out an old revision
I have a git repo like this:
rev3
rev2
rev1
Init repo
and I checkout rev1,
then my git log looks like:
rev1
Init repo
so how can I go back to rev3? should I always have to copy-paste the git ...
0
votes
1answer
88 views
How to diff a file with specific revision in git?
I don't know if git has concept of revision.
I'd like to diff current working copy with older version of it(not neccesarily a last commit)
Would be great if it could be done inside emacs.
0
votes
3answers
32 views
Git - Determine when a revision was pulled/fetched/merged at this site
I know when certain commits were created (at remote A, say) based on their log messages. What I don't know is when remote B fetched and merged said revision. I need it to determine when a bug crept ...
3
votes
1answer
422 views
Eclipse Git keyword expansion
I need to to update my source code revision keywords (@version, @date, etc) every time I am checking out the source to the git-hub server.
As you might know:
The main problem with this in Git is ...
0
votes
1answer
83 views
how to obtain all commits between two commits in the version tree?
Given that there is a tree depicted as below:
d1a--d1b---d1c--d1d--d1e <dev>
/ / \
a--b--c---d---e--------f---g----h--i <master>
a is the oldest ...
1
vote
3answers
269 views
How to go back to an earlier revision without losing work done?
I've done some work on a project but then realized it wasn't the way to go. So I want to go back to an earlier, clean, revision. However, I do not want to lose the work I've done between this clean ...
3
votes
3answers
181 views
How to run svn update in a loop to import commits to git?
Current setup
I am running a local git repository in parallel to a svn checkout in the same folder. Whenever something new happens on the svn server I run svn update to download the commits. Then I ...
5
votes
4answers
386 views
Find Git Revision of a Working Directory Missing the .git Directory
I've got a) a working directory without the .git directory and b) a repository. a is some revision in the middle of the history of b.
How can I find out, which revision a matches in b?
I thought of ...
0
votes
3answers
698 views
Django: Get the git revision number of the current project
For my django project, I need to read the current git revision number of my project that powers the site, assuming the project is the root dir of the git repository.
This way I will be keeping my css ...
0
votes
1answer
301 views
Checkout the git commit corresponding to a certain revision from the old SVN repository?
I migrated my repository from SVN to git. I used
THIS site. Now I have a bug in revision X. How do I checkout from my git repository, knowing only the revision number from my old SVN repo?
Thank you ...
6
votes
4answers
3k views
Git - go to particular revision
I cloned a git repository of certain project. Can I turn the files to the initial state and when I review the files go to revision 2, 3, 4 ... most recent? I'd like to have an overview how to project ...
7
votes
1answer
167 views
GIT: determine revision based on a file
I have a file from a project that uses GIT as repository. For that file I need to find out to which revision this file belongs to. The file is stand-alone outside of an repository therefore the ...
6
votes
2answers
734 views
Who deleted my change in git?
Here was my problem for the last 30 minutes: I had a couple of changes that disappeared in one of my files, and I don't know when that happened. And I want to know who did that!
I started looking for ...
0
votes
3answers
93 views
GIT How to view history of turnins
I would like to see the history of changes for a file in GIT revision tool.
Also the date when turnin was done,who made the change and any related turnin comments
2
votes
3answers
72 views
Is there a way to check out a single file from a master that's behind on many Git commits?
I've got a code work flow dependent on pulling changes from a repo clones on dev machines into a repo master, then updating copies of that repo master on prod machines using something like a "git ...
7
votes
3answers
3k views
How to use tags for versioning in git gui
I'm a complete and utter noob, so be gentle!
I'm using git gui, and never touching the command line interface. I'm a noob, and some of the people i'm working with are even noob-ey-er...
Current ...
0
votes
4answers
235 views
deleting and renaming files
When working with a checked-out copy of an SVN or Git project, I often delete or rename files without using the appropriate git mv, svn rename, git rm, or svn delete commands, so these changes are not ...
8
votes
3answers
2k views
How to delete a specific revision of a github gist?
I created a Gist on GitHub and I saw informations I don't want anyone to see.
I updated the file since, but everybody can still access the old revision of the file.
Except deleting the Gist, is there ...
3
votes
4answers
261 views
How to use a revision control system in general
I am planning to create projects which will get a bit bigger than my projects before, so I thought it would be good to use a revision control system like svn or git to keep track of all changes, ...
1
vote
1answer
286 views
Using git to identify all modified functions in a revision
Is there a good way to use git to identify all the modified functions in each revision in the history? I've tried using the -p switch, but it doesn't seem to work in the same way that svn's ...
1
vote
2answers
265 views
Does any database support revision control on its command line interface?
Does any database support revision control on its command line interface?
So for instance, I'm at the mysql> command prompt. I'm going to add a column to a table. I type
ALTER TABLE X ADD COLUMN Y ...
3
votes
2answers
685 views
How to list files in specific revision in `git`?
I want to know file list in specific revision in git repository.
How can I do this?
4
votes
2answers
156 views
Git: Old Source Code into New Repository
Quick question:
I've run into a little issue, where I just need some insight into what I should do with some code I have.
I have one repository, in two locations. The "older" code is located in ...
1
vote
1answer
408 views
How do you sync to a prior changelist in GitHub?
I come from the Perforce world, so my language here is going to be Perforce speak, but I am trying to use GitHUB and something terrible has happened. I used the commands:
git reset --hard
(and)
git ...
2
votes
1answer
182 views
Using git without (or with limited) revision history?
I was searching for dropbox alternatives with own server, but had no luck. iFolder was pretty nice, but currently iFolder server could only be installed on linux. I have only Windows server now. (I ...
27
votes
7answers
34k views
How to clone git repository with specific revision/changeset?
How can I clone git repository with specific revision/changeset? Something like I usually do in Mercurial: hg clone -r 3 /path/to/repository
Thanks!
0
votes
1answer
79 views
Is there a proper way to ‘sync’ branches and keep them separate?
So I created a new branch from master and eventually merge the changes back, only some changes seemed to merge and it would seem I merged in one direction. Eventually I just decided to be sure master ...
5
votes
2answers
3k views
how to add revision and build date to source
I have a gcc project and would like to automatically add defines for build date and revision number (from git) to my sources. What's the best way to do this?
My goal is simple to be able to do ...
2
votes
1answer
79 views
Why does Git display certain new folders when checking out old revisions?
Hey all -
I'm still learning the ropes of Git (love it!) but the other day I noticed some behavior I just do not understand. We have, in essence, three folders that got moved into the repository at ...
0
votes
2answers
711 views
How can I get the latest revision of CakePHP 1.3? [closed]
This seems like a pretty beginner question; however, I have no idea what the link for the latest revision of cake 1.3 is. I have git and svn working with eclipse. I think cake is using git now instead ...
4
votes
4answers
546 views
How to make “git describe” mention the presence or absence of local changes?
How can I check, in a script, if local changes are present? Perhaps in combination with git describe?
1
vote
1answer
2k views
Git svn fetch retrieving only one revision at a time
I'm using Git-1.6.5.1-preview20091022.exe.
I've cloned a SubVersion repository using:
git svn clone -s https://xxxxx:8443/svn/project/SubProjectA
The SubProjectA has the standard layout (trunk, ...
5
votes
2answers
6k views
Git (TortoiseGit) - How to change the HEAD to a previous revision
When using Git with TortoiseGit: Does somebody know how to change the HEAD to a previous revision for a complete repository and/or just a single file?
For example i have a repository containing ...
84
votes
14answers
34k views
How to get the git commit count?
I'd like to get the number of commits of my git repository, a bit like SVN revision numbers.
The goal is to use it as a unique, incrementing build number.
I currently do like that, on ...
4
votes
5answers
721 views
Using Git For Community-Oriented Website Content Revision System
I'm working on a Django-based web app in which the community fuels the content on the site, much like a wiki. Content is in the form of HTML, and users have total freedom to fork articles/chapters or ...
