8
votes
1answer
60 views
How can I detect copy & pasted code using git?
I just read the git-blame manual page once more and noticed this part:
A particularly useful way is to see if an added file has lines created by copy-and-paste from existing files. Sometimes this …
2
votes
1answer
18 views
How to get a remote URI
I'd like to get an address of my remote repository, ideally one line only. Ideal would be something like
$ git remote show origin fetch_url --some-params-im-not-aware-of
…
2
votes
1answer
44 views
how to recover an accidently deleted remote git repository from local repository
I've done something like following:
(1) clone a remote git repository to local host
local# git clone http://www.foo.com foo
(2) add another project on a ssh host(bar) as the second remote …
1
vote
5answers
59 views
Production and Development environment sync
Hi,
I have a web app on my computer and on web server with ssh. The problem is that I`m developing the app locally on my computer and I want to sync it with the server not by copying files via ftp. Is …
1
vote
1answer
77 views
How do I stop Github changing my project name?
I'm trying to create a new repository in Github, and I'm having trouble with it's name. It's a C++ project, so I'd like to call it:
superproject++
However Github creates me a repo with a url of:
…
1
vote
3answers
66 views
How do I pull a remote branch in git without conflicts?
There is a branch on remote I would like to work on. It is old and I no longer have an old copy of it on my local machine. It is really far behind master. Whenever I attempt to pull it I get …
2
votes
1answer
48 views
How can I retrieve commits in “overwritten” branch in Git?
Background
I'm working with just one branch - master.
3---------2---------
|
6-------5---------4---------1----------
I made commits 1-3, then realised I wanted …
1
vote
1answer
50 views
Increasing Cygwin’s memory allocation
I just added a ton of images to my local git repo. As a result, when I try to push to our remote repo, I get the error:
fatal: out of memory, malloc failed76)
My hypothesis is that this is due to …
0
votes
2answers
46 views
How to emulate ‘git stash’ in fossil, bzr?
Is it possible to emulate the behavior of 'git stash' when using fossil/bzr?
Basically I'm interested in handling the following workflow:
at some point the source code tree has state X, it is …
1
vote
3answers
81 views
My Git repository is in the wrong root directory. Can I move it? (../ intead of ./)
Somehow when I 'git init'ed my latest project a month or so ago I ran the command in the directory one directory higher than the root of my project.
So my repository is in the ./project directory and …
0
votes
1answer
34 views
Has Gitorious hooks for CIA commit notification?
As I am running out of my space on GitHub on my free account (yes, I am considering upgrading), I am setting up new git repositories on Gitorious (see also GitHub vs Gitorious). One great feature of …
1
vote
2answers
34 views
Ignore folder in stable, but not in devel branch
I have the following folder structure for my project
src/
test_unit/
package1/
test_unit/
package2/
test_unit
output/
In my devel branch all folders should be version …
1
vote
2answers
57 views
How can I get the version number of git running on server?
I'm a git newbie.
I'm working on a project on GitHub, and I have some problems (I'll detail them in a later posts if further checks don't succeed) pushing my commits to remote repository.
I'd like …
4
votes
4answers
87 views
How to remove unreferenced blobs from my git repo
I have a GitHub repo that had two branches - master & release.
The release branch contained binary distribution files that were contributing to a very large repo size (> 250MB), so I decided to …
2
votes
2answers
67 views
Set up git to pull and push all branches
I'd like to push and pull all the branches by default, including the newly created ones.
Is there a setting that I can define for it?
Otherwise, when I add a new branch, locally and I want to pull …
