Git is an open-source DVCS (Distributed Version Control System).

learn more… | top users | synonyms | git jobs

-1
votes
1answer
46 views

How do I uninstall Git from my computer?

I am learning Ruby on Rails and am unable to resolve merge conflicts in my Git repository. I was using Github for Windows, which wasn't much help. Trying to repair the damage I've probably created ...
0
votes
0answers
18 views

Review proposal of version control based on graph datastructure [closed]

I am just a noob in the SCM domain, so I want your opinion about the following: Proposal for Version Control using trees of trees This method involves the use of Object Identifiers to designate ...
0
votes
2answers
25 views

Ammending a pushed commit message

I just made pushed a commit, then realised I needed to change the commit message. So on my local repo I did: git commit --amend -m "New commit message" But when I then tried to push this, I was ...
2
votes
3answers
69 views

Prevent git committers from creating certain directories

Is there a way to prevent git committers from creating a directory in the repository. We have some developers who keep misplacing files in a directory structure. Files that should be in a/b/c/file ...
0
votes
1answer
19 views

git workflow for multi client web development

I'm having a hard time figuring out a good workflow for the git development process in an agency. I want to use git flow as it seems to fit our situation pretty good. Here's my problem with this ...
-6
votes
0answers
33 views

Install Command Git in Mac OSX 10.8.2 [closed]

I need install Git Command in Mac for run : $ cd /path/to/MyApplication # If this is a new project, initialize git... $ git init $ git submodule add git://github.com/RestKit/RestKit.git $ open ...
0
votes
1answer
25 views

remove a past git commit with large files

I did a large git commit about 5 commits ago on my local repo. I need to remove this commit, (really just the large files/videos that were with the commit) so that I can then upload my latest commits ...
0
votes
1answer
25 views

Reset to state before pull

For debugging purposes it would be helpful to me to reset my repository to the state before a pull (I have no backup), especially, I want to get rid of all the fetched new file contents. Resetting the ...
1
vote
5answers
51 views

How to specify git email address on the command line?

I'm working with two different Git repositories (ie github and stash) and for each one I want to use a different email address. I know I can use git config but I don't want to have to remember to do ...
0
votes
2answers
24 views

Git modifies a file as it thinks it should, but I think it does it wrong

I have 2 separate branches and a file that has been changed on both these branches (separate histories after a certain point - let's just blame an anonymous developer for this misuse of git). The ...
3
votes
1answer
31 views

Whats the best way to deal with “dead / unused” branches in GIT?

in our project we use GIT as SCM. As usal we create seperate branches for new features, complex bugfixes, next version etc. . When (e.g.) a new features are fully implemented they are merged into ...
-1
votes
0answers
29 views

How can I modify commit info on disc

I have a repository that I need to modify the commit info on, but I don't have access to the git command line. What files do I need to change on disc to fix the history?
1
vote
1answer
26 views

What are git methodologies for rapid deployment

I have a huge project without proper revision control system (I know it is bad and this is why I want to change). What methodology should I use if I would like to make rapid weekly releases, and at ...
1
vote
0answers
20 views

How can I update Pom.xml files automatically with Git?

Is there a way I can automatically update a pom.xml file on a git commit using a git commit hook? What I want to do, is I want to replace all instances of the old version, with the new version based ...
0
votes
1answer
14 views

TYPO3: Hiding folders in ext:DAM, even for BE admin

I have a TYPO3 installation with DAM, where some folders/files are managed by git repository (ie. fileadmin/templates/*), therefore I'd like to disable access to them from DAM and/or File module even ...
1
vote
1answer
17 views

Error 401 when pushing to Git (GitLab)

I am getting the error Total 4 (delta 2), reused 0 (delta 0) error: RPC failed; result=22, HTTP code = 401 When pushing to a git repository on GitLab. It used to work.
1
vote
2answers
39 views

Some Files Disappeared After Git Stash

I'm working on directory. I've made some modifications since my last commit. And i want to ignore all this modifications (which after my last commit) . In shortly, i want to turn back my last commit . ...
4
votes
1answer
33 views

How to add git repo to working dir of a project

I have a git repo in BitBucket, with a big project. I also have the same project locally on my computer in a dir, that is not under git. In my local dir, there are quite a few modifications that are ...
2
votes
0answers
23 views

Git submodule most recent common commit

I work on a fairly large project that has a "common" submodule and several client repos, with more branches and tags than you can count... Is there a standard way to, given a certain commit in the ...
1
vote
1answer
50 views

Which is the best git hosting sw? - Gitolite vs. Gitlab vs. Gitorius

I am looking for a git hosting environment for several users. Therefore i've searched for comparisons between Gitolite, Gitlab and Gitorius. But i get nothing what could be useful. Is there anybody, ...
-1
votes
1answer
16 views

How to commit the files which were pushed before and abandoned in gerrit

Suppose i have three files - file 1,file 2 and file 3. I add them, commit and push it. It goes to the gerrit system,and suppose i find that i had to change something in the file 1 I abandon the patch ...
1
vote
1answer
19 views

How to add git remote repos name repeatedly in jenkins shell?

In jenkins shell, I want to add remote repos, but if repos name exist, then I met fatal: remote I-WANT-TO-PUSH already exists. and jenkins aborted unexpectedly. I want to pseudo code below. if [ ...
0
votes
0answers
48 views

Git error. Possible detached HEAD

I'm new using Git and I don't know how to figure out this problem: I compile/deploy my project using Jenkins and it always checks out a wrong commit 8f0aff920dd11e7fbd578af95d54a93942a73310, ...
1
vote
1answer
12 views

How can 'git bisect skip' be done in TortoiseGit?

TortoiseGit has a GUI for running Git Bisect. However during a bisect-session the context menu only provides 'Bisect good', 'Bisect bad' and 'Bisect reset'. Is there a way to do 'Bisect skip' ...
1
vote
1answer
18 views

How can I ignore whitespace changes in tortoise git blame

If I want to ignore whitespace changes in git blame I can use -w option. But how can I do it in Tortoise Git Blame UI tool? Is this even possible?
1
vote
1answer
35 views

Can I see when a change was merged into my git branch?

When I open 'gitk [filename]', I can see when a change was committed, but is it also possible to know since when it was included in your branch?
0
votes
1answer
17 views

Commands with Github vs Bitbucket same/different? what about git-sh?

What are the similarities or differences in varying commands with bitbucket versus github? (I'm a github user) I'm currently using git-sh, will this be compatible with bitbucket?
3
votes
1answer
33 views

Is it possible to commit a file that defies the line ending behavior specified by .gitattributes?

If a .gitattributes file is added to given directory, with exactly the following content: *.txt text Is there any possible way that a new file or a previously normalized file (e.g. all LF ...
2
votes
1answer
39 views

How to use Git to have different working directory structures on different platforms?

On Windows we have root\folder1, root\folder2, root\folder3. On Linux we have root/folder1/folder2, root/folder1/folder3 I would strongly prefer NOT to use submodules nor subtreees. Is there another ...
1
vote
1answer
24 views

How to structure dependent projects on github?

I recently put some of my projects on github to make them open source but I'm having trouble understanding how to structure the projects properly. I've got a Core project and another project that ...
0
votes
1answer
27 views

How can I remove files from a Git repo in NetBeans?

I have several project config files that got stuck in the tree when I initially commited in NetBeans, and now they refuse to be removed from the commit. How can I remove them from within NetBeans?
0
votes
1answer
22 views

Change a commit author in NetBeans

I'm working with a Git repository in NetBeans, and I accidentally messed up and wrote a commit with the wrong username/email attached to it. I'd like to change this before I push to GitHub. How can I ...
1
vote
1answer
16 views

'origin' does not appear to be a remote repository

I am trying to push some code into a new, fresh repo over at github. But I am getting the error below. I have done nothing strange, I always do the same steps, but this time, I see the error. I SO'd ...
1
vote
1answer
21 views

Jenkins GitPlugin - how to find out what failed on a pre-build merge?

We have Jenkins installed using GitPlugin to pull branches and merge them, as described in the GitPlugin Wiki. However, when the merge fails there's no output saying why it failed, just that it ...
3
votes
3answers
39 views

Move Old Commit to New Branch

I've accidentally started working on a new feature in the middle of another. My repository simply looks like this: A - B - C - D - E master But I'm hoping to make it look like this: A - B - D - E ...
1
vote
1answer
15 views

How do I create a GitLab webhook?

I've read that GitLab is capable of sending messages to other servers via "web hooks" but I can't find where one would create one. Can someone point me in the right direction?
5
votes
2answers
42 views

git subdirectory which is ignored

I have a project named 'myproject' which is version-controlled by git. It has a subdirectory named 'data' which is gitignored. Can I 'git init' for data directory and manage it as a separate git ...
0
votes
0answers
20 views

Utilizing GitHub via NetBeans

I'm fairly new to version control, but I have been messing with Git from within NetBeans and I was wondering what steps I would need to set up NetBeans to use GitHub. I'm also wondering in addition if ...
1
vote
1answer
45 views

Can Git change files on checkout?

Does Git ever change files on checkout? I'm experiencing behavior where I check out a branch, and without touching anything I suddenly have six or eight changed files. These files are marked as ...
0
votes
0answers
18 views

p4passwd invalid or unset in git-p4 python

So I have my perforce and git set up. I can easily access, modify perforce with simple commands like "p4 info" etc from the command line. I have a perforce workspace and I created a new directory for ...
1
vote
2answers
30 views

Trying to open .gitignore to edit it in text editor but cannot find location of file on OS X Mountain Lion

I created a new rails app using "new app_name" and I'm trying to edit the .gitignore file but can't find it in my app folder. Where can I find it? I have Git installed.
1
vote
1answer
25 views

Can git figure out that the branch to be merged has obsolete changes?

I am new in git and I am find it hard to wrap my head around the fact that everything is around snapshots/commits and not individual files. So assume that I have a tree in my repository as follows. ...
2
votes
1answer
27 views

How can I set maximum field lenghs for git log prettyprint?

How can I specify maximum field lengths with git log? I want the output columns to be aligned.
1
vote
1answer
17 views

NodeJs - Access Git index on Windows

I am trying to use the nodejs module, gift to read the index of a Git repo. I chose 'gift' because it seemed the most promising on Windows. Does anyone know how to get the status of the Git repo using ...
0
votes
1answer
21 views

git-svn clone dying with signal 6

So I have been cloning a bunch of projects in my repository in order to migrate over to Git. I have been able to successfully clone all of them except for one. It happens to be the largest project, ...
1
vote
3answers
41 views

Error in git book or I misunderstood?

Here you can read: Tracking Branches Checking out a local branch from a remote branch automatically creates what is called a tracking branch. Tracking branches are local branches that have a ...
-2
votes
1answer
31 views

Composer not intalling new libraries

I'm using Composer along with my PHP project. It was working fine and I had installed a few php libraries from packagist. But after I restarted the server for maintenance reasons, it seems like ...
3
votes
1answer
35 views

.gitignore NuGet packages folder at any level but include .targets file at any level

I'm trying to implement the workaround for the NuGet Package Restore Issues. This involves ignoring the contents of all packages folders, at any level in the hierarchy. However, .targets files ...
1
vote
1answer
21 views

Git stash: How to see if there are stashed changes in a branch

Let's say i'm in a branch off of master, called "my_new_stuff". I have a feeling i might have stashed something in there. I'm worried that if I do git stash pop and i didn't stash anything it's ...
1
vote
2answers
29 views

how do I sync my repository to both GitHub and my internal Git server?

We have an internal Git server and use Github.com however I am confused on how to sync my repo to both github.com and our internal git server, is this even possible? I heard something about git ...

1 2 3 4 5 563