Git is an open-source DVCS (Distributed Version Control System).
learn more… | top users | synonyms | git jobs
0
votes
0answers
11 views
Deleting branch with repo abandon and git branch -D
I am using git and git-repo for my project. I see when I try to delete my local branch which I am currently on using git command
git branch -D branch_name
It shows me error which I am expecting, ...
0
votes
1answer
17 views
Complete Source of a File & the File History from the remote
The following command will give the diff view of a given file:
gitk client/gwt/com/mycom/tradepage/MyEditWindow.java
Can anybody tell if it is possible to get the complete source (not just the ...
3
votes
3answers
30 views
Git branching and switching back to master is ahead?
I have code that is working pretty good and created a branch to make some significant changes on my work computer with git checkout -b messaging. I committed my partially completed work and pushed it ...
0
votes
1answer
21 views
How to see git changes after moving code around?
I am looking at a git diff, most of it is the same code moved from one file to another plus whitespace. How could I see the real differences? I tried git diff -b -C -C to no avail.
0
votes
0answers
16 views
Git file: does not look like a v2 bundle file
I've received a single file master.gz which is a Git repository. I'm new to Git so don't know what this is. I gunzip'd and have a single master file of 120MB. I've installed Git (MacOS) and run this:
...
0
votes
2answers
31 views
Deleting remote changes after git pull
I was working on some code that, in hurry, I screwed up because of which i had to git -reset to a previous commit. Now that I've got it working fine, doing git push says that my current branch is ...
0
votes
0answers
11 views
Git submodule with same name
I am trying to make repo like:
server
\ module_1
\ library
\ module_2
\ library
Whereis modules its stand-alone programs, using the same library. They should work/compile without server ...
0
votes
1answer
21 views
Question Mark after file names when renaming - how to purge from Xcode?
So I added a bunch of images to my project that has git enabled. I then renamed all the images in Xcode. Now whenever I select commit, these files with the old file name pop up with a question mark. ...
0
votes
1answer
19 views
github “fatal: The remote end hung up unexpectedly”
When getting the error
fatal: The remote end hung up unexpectedly
What tests can I run to figure out what's going on? I've created a brand new git repository, and it won't push!
Here are some of ...
1
vote
1answer
13 views
git push remote: warning: hooks.mailinglist has multiple values
I have just upgraded from using gitosis to gitolite. Email notifications are working for all repos but for the gitolite-admin repo I get this waring when I push (the push is good):
$ git push
remote: ...
0
votes
0answers
35 views
Git repo contains target directory
Our company just moved to Git. It now appears we should have sorted out our .gitignore file before starting to check code in. We now have several projects in the Git repo, including their Maven ...
1
vote
3answers
35 views
What is the easiest way to deal with `git pull` that accidentally omitted `--rebase`?
When we have committed local changes in a repo that have not been published, the right thing is to do a git pull --rebase to integrate them with upstream. This results in a clean, linear log. If we do ...
0
votes
0answers
8 views
Cannot run aws.push for local repository head
I'm trying to deploy a Ruby project (redmine) on an Elastic Beanstalk server using the Elastic Beanstalk Command Line Interface, but when I try to launch the environment i get the following error:
$ ...
0
votes
1answer
25 views
git “local changes checked into the index but not commited”
I edited files on home desktop and pushed to bitbucket.org as well as uploading to my test website.
I then pulled from bitbucket.org to my laptop.
It told me I needed to merge files but I did not ...
0
votes
1answer
29 views
git gc and git pull locks up machine and never finishes
When running git gc, git gets up to 99% complete and then locks up. I let it run all night and it never finished, and did not seem to progress. Generally I have to hard-reset the machine to recover ...
1
vote
2answers
16 views
Concerning workflow of a second commit without a previous push
I am new to git and I am trying to understand the workflow.
Let's say that I did a git commit but did not push the file to the repository.
This means a local commit, right?
Now I realize that I need ...
0
votes
1answer
28 views
can svn and git both separate repositories from working copy?
For various reasons, I need to separate the repository from the working copy onto separate drives, though allow push/pulls to still function normally.
Is this possible in Git?
Is this possible in ...
0
votes
0answers
11 views
Puppet: Git installation for windows timeout
I have the following resources to install git on our windows server CI servers(don't need tortoisehg). It seems that is going for timeout even though the installation completes successfully. I have ...
0
votes
1answer
15 views
Getting back to an erroneous git reset
Say I'm working on a project and I'm making various commits as I go along
A - B - C - D - E
And I realise that I made a mistake and need to do git reset to go back to version C.
So I then carry on ...
0
votes
1answer
10 views
Git submodules and rebase
Using git 1.8.1. I have upstream and local repo for git project.It has one submodule (hash A). Then I branch it out locally to branch "feature" (and have hash A submodule).
Pull some changes and ...
0
votes
2answers
16 views
Git submodules not going into repo
I added a submodule to a feature branch of my local repository. I can see the related info in .git/config and .gitmodules. I pushed to the remote. git status shows clean.
When I clone the repo on ...
0
votes
0answers
31 views
Will git deal with the case where two different files happen to have same hash ID? [duplicate]
For two different files, is that possible "git hash-object" gives the same ID? people generally don't worried about it. So I am wondering if it would happen at all. If it does happen, how git will ...
0
votes
1answer
25 views
Pushing to github issue
I have a project which was bound to the remote server on github, but somehow it stopped working, so I deleted the remote origin folder through the Organizer and reconnected fresh.
But now, I have ...
0
votes
1answer
31 views
GIT stop copying owner and group permissios
Is there any way to say to GIT to stop copying file group and owner settings? My situation is as followed:
I am developing on home server where I need to use my users permissions (not root) in order ...
0
votes
1answer
15 views
git ignore folder changes but still sync
I am working on an Android project that I sync with git. I imported Google and Facebook Sdks. I want the push to push the sdks so that they are shared, but not to track all the changes in the cache ...
1
vote
0answers
18 views
Git-receive-pack error over SSH pushing
I am trying to push my local git repository to a ssh server, where I have neither root access nor the git command line installed.
Since I have seen that git also supports ftp pushing i have thought ...
1
vote
0answers
22 views
How to submit multiple pull-requests in GitHub when they may conflict slightly
I am submitting two independent new features to a project as pull-requests. Each feature is in a topic branch, each branching from the tip of master.
/-- feature1
master ---
\-- ...
2
votes
1answer
27 views
push to github without sending changes that are already in another fork
I have forked a repository on github and didn't pull from parent for some time.
Since then, a lot of changes accumulated in parent (including many large files).
I've pulled them into my local repo ...
0
votes
1answer
24 views
git reset --soft altering my index
As a newcomer to git, I'm investigating the various resets I can do.
I was under the impression that git reset --soft does not alter the index or the working directory, it only changes the head of ...
0
votes
0answers
18 views
Microsoft Visual Studio Tools for git push error
I'm trying to get used to the VS git plugin.
I'm using it with bitbuket and GitHub remote repositories.
Sometimes i get the following error :
An error was raised by libgit2. Category = Net (Error).
...
1
vote
2answers
62 views
Git: Getting someone elses project without forking
I'm fairly new to GIT and I've been trying to find an answer to this question on the internet but so far haven't found anything that speaks to it.
If I understand correctly the purpose of forking a ...
0
votes
1answer
13 views
Git diff without clone
We recently migrated from SVN to Git, and I'm trying to convert our deployment scripts to pull from the new repo.
One script creates a "hotfix", which just includes files that have changed between ...
0
votes
3answers
21 views
What is Git actually doing when I run git diff
As a newcomer to Git, can somebody please explain in relatively simple terms what git diff actually does, without going into branching/merging etc?
From my experience I know the outcome of running ...
0
votes
3answers
50 views
git, made a pull-request but found a bug in my code, how to fix it?
I made my first pull-request not long ago, and I found a bug in the code.(meh)
I don't want to make a new branch and commit/push/pull request the new branch since this must have been in the first ...
-1
votes
4answers
50 views
GIT conflict development
I have performed a git pull into my local repository and I received a conflict in the log/development.log file
Auto-merging log/development.log
CONFLICT (content): Merge conflict in ...
0
votes
1answer
37 views
Why does git generate conflicts during a merge that are auto-resolved by most merge tools such as kdiff3?
As stated in the title. I tried googling this but found no explanation for it so I looked at the kdiff3 documentation which provided some insight. The situation i'm running into is I do a merge from ...
0
votes
1answer
15 views
error: hook declined to update refs/heads/external_pub while pushing a branch
Currently, I'm working on 'external_pub' branch. I made few changes in one file, added it, committed & then tried to push:
git push origin external_pub
But this was resulted into an error:
...
0
votes
3answers
27 views
Create an alias for several git commands [duplicate]
I generally use these commands on branch 'work' with git
git commit -a -m "blah! blah!"
git checkout master
git merge work
git checkout work
I have heard about git aliases. Is it possible to ...
-1
votes
1answer
27 views
Git tf alternative for Mac Os [closed]
We want to create local repository in our company. There is a server machine (Windows). In this machine TFS integrated. Developers use Mac , as usual Xcode. We (developers) want to push/pull files ...
1
vote
1answer
24 views
How-to git backport (rebase/cherry-pick) an already merged branch
In our Git process, "master" is the integration branch for topic and fix branches for the current release cycle, but we also maintain a "stable" branch where we have to backport carefully some of our ...
1
vote
2answers
24 views
Retrieving an old version of a file using Git
Say I want to retrieve an old version of a file (filename.html) from a few commits ago. Am I right in thinking that I need to do
git checkout sha -- filename.html
(where sha is the hash of the ...
0
votes
1answer
45 views
Is it possible to have one git repository for different folders?
I have the following folders on my computer:
/home/user/git/eclipse-project
/home/user/eagle/eagle-project
The Eclipse Project and the Eagle Project belong to the same task and I have one ...
0
votes
0answers
8 views
Setting up Gitblit as a service Windows Server 2003
as the title suggests, I need to set up Gitblit 1.2.1 as automatic service. If I run manually gitblit.cmd, everything works perfectly but I need this automatically. Can anyone help me?
Thanks
0
votes
0answers
10 views
Smart http push over proxy doesn't finish
We are using Git 1.8.0 on an ubuntu 12.04 server. I am trying to configure git to allow connections via smart http. This works as long as the connection does not use a proxy on the client side.
If a ...
0
votes
1answer
15 views
Git svn clone with author name like “/CN=myname”
I'm trying to switch from svn to git on windows 7 using git svn clone command.
On one of my repository I try this:
git svn clone --stdlayout --no-metadata -A users.txt --username=/CN=john ...
0
votes
1answer
14 views
git format-patch not working from bash script
I have a list of commits available in commits.txt file and i need to prepare a list of patches of these commits so as to apply them later to my branch. I have written below bash script to do so :-
...
0
votes
2answers
12 views
Rewriting git history to make crlf consistent
I have a git repository that has a fine variation of LF and CRLF files.
Before making a possible switch, I want to rewrite commits where the parent and the current commit have different LR/CRLF ...
1
vote
1answer
37 views
Does deleting branch from server delete history of that branch forever?
I created a branch 'test' (just for learning purpose) & pushed it to origin server. For branch 'test' I have two commits & I pushed them to origin. But I don't want those commits hence also ...
0
votes
2answers
29 views
Finding changes in a Git merge
Using git bisect I found the culprit commit - it is a merge commit (I'm on the master branch)
I'm trying to isolate the buggy code but the merge included some commits from the merged branch and I ...
1
vote
1answer
29 views
Git repo update date and time
Is it possible to get the date and time when my git repository was updated from the remote repo. Currently I use "repo sync" and "git pull --rebase" to update my local repository.
Thanks



