Search Results

1
vote

Is it safe to use a copied git repo?

It's exactly the same, well, almost, if you want the same in 'project3' just do: git remote add origin /home/itsadok/project git branch -f master origin/master …
0
votes

Difference in ‘git log origin/master’ vs ‘git log origin/master..’

git log origin/master Would be like (fake command): git log INITIAL..origin/master While: git log origin/master.. …
2
votes

pull/push from multiple remote locations

You can add remotes with: git remote add a urla git remote add b urlb Then to update all the repos do: git remote update …
0
votes

How to back up private branches in git

There's nothing wrong with pushing personal branches. It is generally discouraged because people might start work based on your branch, and when you rebase, their changes are left floating. …
0
votes

What type of git server do you use? or how do you use git?

I would recommend to use ssh+cgit. cgit makes it really easy to see the changes as they happen and you can even suscribe to the RSS feeds, you can do that with gitweb too, but cgit …
0
votes

Changing remote repository for a git submodule

Just edit your .git/config file. For example; if you have a "common" submodule you can do this in the super-module: git config submodule.common.url /data/m …
4
votes

git Will a commit be garbage collected if it’s refered to by tag but not by branch?

tags and branches are both refs, if a ref is pointing to a commit, it's not garbage collected. You can also have custom refs, but those are uncommon. …
0
votes

What is the Difference Between Mercurial and Git?

There's one huge difference between git and mercurial; the way the represent each commit. git represents commits as snapshots, while mercurial r …
7
votes

Having a hard time understanding git-fetch

First, there's no such concept of local tracking branches, only remote tracking branches. So origin/master is a remote tracking branch for master …