0
votes
0answers
17 views

GIT merge with several targets in Xcode

I created a second target in my Xcode project and some images with the already existing names in the branding folder. Now if I commit the changes, push them to server and my teammate pulls them down, ...
0
votes
0answers
19 views

Netbeans: How to show all (git) commits than will be pushed?

How to show all (git) commits than will be pushed within Netbeans ? Netbeans 7.3 simply pushes everything without showing a list of all commits first (like IntelliJ IDEA does).
0
votes
1answer
30 views

Removing changes from one file in a commit

I have a private repo with a single commit on Github -- specifically for a Rails project. My schema file was changed along with migrations, and a fellow dev wants me to remove the schema changes from ...
2
votes
1answer
39 views

Can git list the tags that occur between two particular commits?

Is there a way to get git to list all the tags that were added in between two commits? That is, only show me the tags that appear between point A and point B.
1
vote
1answer
40 views

intellij idea: how to disable pre-commit code analysis for Git-backed projects

I have a project in intellij, and I'm using Git/GitHub as source control. Each time I try to commit changes, intellij runs a lengthy code analysis and searches for TODOs. When it finds "problems," ...
-1
votes
2answers
40 views

git cant add . or comit or whatever with buged files

I saw a lot of questions in google like this but i cant figure it out what exactly to do. Git status still display this files... and when i push files to remote github repo... not all files are ...
1
vote
2answers
30 views

Must every git commit be an ancestor of a branch?

Given this git tree: A <--- B <--- C (HEAD, master) is it possible to put the tree into this state: A <--- B (HEAD, master) <--- C (There are no branches or tags other than master.) ...
0
votes
0answers
45 views

GitHub History Changes on Every Commit

So my team and I are having a very strange issue with Git / GitHub. (a private repo) Every time one of us commits, the commit history changes. This isn't a matter of different branches; at the ...
1
vote
1answer
27 views

Does git rebase update commits in other local branches?

I know I can test this experimentally, but having discussion would be nice. If I have a local head on (local branch) master that has diverged from the remote master, I tend to do a git pull --rebase ...
0
votes
0answers
20 views

How to push the amended commit message to remote

I followed this thread on how to amend the commit message. It went well. But in the previous commit I pushed the updates to remote as well. Now once I changed the commit message, its rejecting the ...
0
votes
0answers
32 views

Git hook to create archive of changes on commit

A particular client does not give me access to their web server, so I need to send all updates to them as a zip. How can I set up a Git hook that will create a zip archive of the latest commits that ...
0
votes
1answer
45 views

github - how to remove commit from branch

I have read a lot of questions and answers which could be related to my question, but I can't find an answer. Maybe because I'm not experienced git user. Then I'm sorry and would be grateful for links ...
1
vote
2answers
16 views

Taking the changes of a specific file from a past commit and putting it in a new branch

a while back I changed a file. today I want to add these changes to a few branches. The thing is that the commit of which that file was changed also include other files, which I don't want to be ...
0
votes
1answer
15 views

Referring to the previous/next commit in git?

I have seen git commands use a syntax such as HEAD~, but I haven't been able to find this syntax in the Git Reference Manual. Here is what I have understood: <commit>~<n> refers to the ...
0
votes
0answers
61 views

GIT push not pushing commits to remote

I have been working on a git repository and have been pushing my local changes to a remote server all the time... up until recently. When I do a git push, it says that everything is up-to-date. In ...
1
vote
0answers
85 views

Git commit returns “nothing to commit”

I am following instructions from https://devcenter.heroku.com/articles/facebook#what_is_heroku I have edited the file once already and pushed the changes successfully to the app. But when I tried to ...
0
votes
1answer
33 views

git: How to get the latest commit on a specific file, regardless of branch?

I have this big repository containing different modules, which should have been broken down in different repositories, one for each module. Sometimes I created a branch, say featbranch, in the repo to ...
0
votes
1answer
30 views

how to merge different commit in git log history

let's say we have commits 1->2->3->4->5 I thought the history might be too long, I want the log to merge 1, 2 and 3 into one, say, 1'->2->3->4->5 how can I do this, should I use rebase? it seems that ...
0
votes
1answer
51 views

Git/Github allow collaborators but keep control

I want to allow some collaborators on one of my github repos, however I would like to limit them to their own Branch. There's only a handful of collaborators, and limiting them to their own branch ...
0
votes
3answers
42 views

How do i remove the latest commit from my repo?

I have made some error with my latest commit to my github repo. How can i delete tha latest one? Do i use this command: git reset --hard HEAD^ for remove the latest one? and then: git push ...
2
votes
1answer
31 views

How to recover a merge commit after a rebase on the same commit?

Suppose this: mkdir test; cd test echo "1" > file1; git init; git add .; git commit -m "initial - file 1" # 1st commit on master echo "2" > file2; git add .; git commit -m "file 2" ...
1
vote
2answers
28 views

How to take my local commits from master and place them in a new branch

I've created some changes to a git repo, and committed them to master (I have NOT pushed the changes up to GitHub, however). What I need to do now, is create a new branch, and move my commits over to ...
0
votes
2answers
35 views

Efficiently dropping current changes already saved

I'm beginning with Git and Magit so I don't know to which one my question is specific. Sometimes I save changes to a file but then don't want to commit them: I simply want to go back to the last ...
0
votes
1answer
19 views

Identify commit in which a particular file was deleted

I am working on a project which is hosted on GIT. In some directory in my repo, somebody has deleted a file say [a.txt] at path [/home/git/myProject/generic]. Now, a lot of commits have happened on ...
0
votes
0answers
21 views

git commit — aborting commit prematurely when using notepad++ as default editor [duplicate]

I am trying to commit all changes to my latest repo using git commit -a I have edited global configurations to use notepad++ rather than vim git config --global core.editor "'C:\Program Files ...
4
votes
1answer
96 views

How to make Git Extensions browser show all commits like gitk --all

The Git Extensions repository browser seems to be more versatile than gitk in many ways. However, my very favorite command line option for gitk is --all. gitk --all shows all commits, including ...
12
votes
4answers
451 views

git find all unmerged commits in master grouped by the branches they were created in

I have to create some code review from unmerged branches. Side-note: In finding solutions, let's not go to local-branch context problem as this will run on a server, there will be just the origin ...
6
votes
2answers
142 views

What git commit practice is better?

I truly believe that to have one commit on one issue is a good practice(I'm sure I read it somewhere at article like: "Best practices") but today I was surprised. I'm trying to work in a such way: ...
2
votes
2answers
66 views

how to apply a git patch as if the author committed to my repo?

Lets suppose there is a central repository where commits from satellite ones are pushed some time. Developer A makes some commits on his repo while B makes some on his own too. Now, A wants to ...
1
vote
2answers
37 views

How to find the last few commits to a git repository

How to find the last few commits (say "20" commits) to a git repository. git log shows all the commits, I just need the last few commits.
1
vote
1answer
46 views

remove a file from an old commit not pushed yet (Git Extension)

I'm facing a peculiar situation here. I must change the behavior of [4]xxxMerger.py and delete [4]xxxWriter wich means cascading this to commit [5] [6] [7] How can I do that? I know that I can ...
0
votes
1answer
65 views

no commit button in Team menu in eclipse when checking out project from github

I create a local maven project in eclipse. I share the project on github remote repository. and the Team menu comes to have a list of buttons like commit, revert etc. Just like using svn. Now I ...
1
vote
1answer
30 views

Recover from resetting commit without pushing

I had two commits yesterday and couldn't push because I didn't have an internet connection. After that, I wrote some code and realized it's pretty messy and wanted to revert it to a HEAD commit. I did ...
0
votes
2answers
57 views

Commit changes to new repository

I cloned one open source project. Now, since I would like to backup that and show it to some people, I would like it to push it to my github account. The issue is that the original repo is now ...
1
vote
1answer
50 views

How to commit same project under multiple solutions from any of them?

This surely has to be a duplicate since its a common scenario, if so pls direct me to a good link. I have common project (class library) that will be used across many solutions, say, a common ...
1
vote
2answers
31 views

How do I remove a file change from a commit that has not been pushed to origin in git?

I have a file that I accidentally added to my most recent commit. I want to remove the changes, but leave the file in the repository. That is because it is a generated sass stylesheet and I always ...
0
votes
2answers
38 views

git diff between 2 revisions included

I'm doing a : git diff --diff-filter=AM --name-only 59ade6e..c1fc4d8 The 59ade6e hash is a commit where I added all my files (my first commit). But when I execute my command it seems that it ...
0
votes
3answers
102 views

Format of Git tree object

What is the format of a Git tree commit object's content? The content of blob object is blob [size of string] null[string], but what is it for a tree object?
0
votes
3answers
38 views

Commiting into github downgrades my files into previous version

Commiting into github downgrades my files into previous version, I have created a second branch in my github repository for experimental uses, and also i have my master branch. Whenever i try to ...
0
votes
1answer
73 views

removing commit history in git

I was playing around with heroku and django .To host my django app on heroku ,I had to change many files(settings,urls,requirements.txt etc) so many times back and forth (so as to get things right) ...
1
vote
1answer
285 views

Xcode 4.6 won't let me push my project to a git repo

I've started a new project in Xcode (a command line app using C++), and am encountering a problem I haven't had in my other projects: I can successfully commit files, but can't push them to the repo, ...
1
vote
2answers
72 views

Is a commit a branch in itself ? - git

I hope the following question will not be too general. Plz telle me if not, this post could be migrate elswhere. So, I have read in this really good doc (bottom of page 10) that a commit could be ...
2
votes
2answers
131 views

Git commit hell

On our project we have 2 git branches, 'develop' and 'featureBranch'. Since featureBranch was forked off of develop, develop has been updated with a number of commits. Now I want to merge ...
1
vote
1answer
40 views

Need to copy a particular Git commit from another repository

I am new to git I need to get this commit https://github.com/DJNoXD/candied-kernel/commit/3a9f10b82d9a5b6dc54ceab4d7edb60c5a7f19e6 to my git https://github.com/nayak94/nayak-kernel/commits/0.1 I ...
0
votes
3answers
163 views

cherry-pick a commit and keep original SHA code

I would like to cherry-pick a commit on a fetched remote while keeping it's original SHA commit code (my current branch is based on this remote which I resetted to a previous state).
1
vote
1answer
46 views

(Heroku/GIT) Comments added to commit command not appearing in activity

Me and a friend are creating an app for facebook. So to keep organized, when we do something and push it to heroku, we add a comment to the commit command such as: git commit -am "changed logo" The ...
1
vote
3answers
40 views

Workaround git commit

Lets say I have 3 git commits: Commit changes on sidebar Commit changes on footer Commit changes on header Now lets assume I have went trough spiritual awakening and realized that only changes I ...
5
votes
2answers
838 views

Why Git is not accepting me to commit even after configuration?

This question seems like a duplicate but it's really not. Just a slight difference that keeps on repeating. git keeps on telling me: "please tell me who you are", even after setting it up. when I run ...
1
vote
1answer
118 views

Git hook, modify commit files

I'm trying to write git pre-commit hook script, it should write date of commit at the begining of modified files. My problem is that i can't add modified files to previous commit. When i trying invoke ...
0
votes
2answers
48 views

Git, With given change in source, how to find commit number?

I Know in file foo.cpp Following Line has been added some time this year if(engL.showPrompt()>engL.lessPrompt()) executeScript(); How to find which commit pushed this change?

1 2 3 4 5 10