1
vote
3answers
41 views
Making cloned repository in git the master
I have two git repositories:
report.git (Master on remote location)
cloned.git (Local)
I lost report.git. I have the cloned.git. I want to clone other repositories from this cl …
5
votes
2answers
52 views
read-only git mirror of an svn repository
What would be the best way to set up a read-only git mirror of an existing svn repository, and set up post-commit hooks such that whenever someone commits to svn, the git mirror is …
1
vote
2answers
43 views
How to switch branches with git and get ignored files removed?
Hi
Given I have a master branch and a other branch. In the other branch are files I don't want to commit (e.g. log files) so I ignored them in .gitignore.
When I switch to the m …
0
votes
1answer
26 views
warning: refname ‘HEAD’ is ambiguous. GIT
Hi,
I am new to git and I seem to have one branch too many if I execute the following command:
warning: refname 'HEAD' is ambiguous.
I get the following output:
warning: refna …
1
vote
2answers
46 views
How to “cat” a file in JGit?
A while back I was looking for an embeddable distributed version control system in Java,
and I think I have found it in JGit, which is a pure Java implementation of git.
However, t …
0
votes
3answers
95 views
Branching without branches
This might seem like a weird question, but bear with me.
I'd like to (ab?)use git for a little project I'm working on, where I'd like to branch a file, yet keep the branched file …
2
votes
0answers
75 views
Using Git in a TFS shop
Using Git at home has spoiled me - I now find using TFS at work to be a bit of a drag and want to explore the possibility of using Git locally and syncing somehow with TFS. I figur …
2
votes
4answers
71 views
Is there an ignore command for git like there is for svn?
I am a new user to git and I am starting a new project. I have a bunch of dot files that I would like to ignore. Is there an ignore command for git like there is for svn?
3
votes
2answers
56 views
Git merge and resolve any conflicts to current branch.
So I have my master branch, along with branch 'bob'.
I've made many changes in both and now I want merge master into bob to keep him updated. The only thing is, if there is a conf …
3
votes
2answers
38 views
Link to GitHub issue number with commit message?
Is it somehow possible to automatically have a link to GitHub issue number in the git commit message?
8
votes
4answers
104 views
Working locally with Git when main repository is SVN
There is an open source project I want to checkout and contribute to. The main repository is SVN but I want to work in Git. Is this possible?
Most of my searches turns up guides w …
1
vote
4answers
59 views
How to import existing GIT repository into another?
I have a (Windows) GIT repository in a folder called XXX, and I have second GIT repository called YYY.
I want to import the XXX repository into the YYY repository, add all XXX's c …
0
votes
2answers
20 views
tortoise git connect to remote git repo (not github)
I have a git branch on my production server which is centos. I am trying to connect to it from tortoisegit on my windows machine but it doesn't seem to be working.
I install msysg …
1
vote
2answers
36 views
How to handle xml/html in git feature branch workflow ?
Our project is working within fairly close quarters code-wise (a lot of changes happening in parallel in a fairly small geographical area of the code), and our feature branch based …
1
vote
2answers
39 views
getting commits’ tag in git
Gitk has a nice habit of showing me Tags:, Follows: and Precedes: for commit. How do I get the same information from command line?
