Questions tagged [gitx]

GitX is a GUI git tool made for Mac OS X.

GitX is a GUI tool for git management made for Mac OS X.

It is also available for Ubuntu under the name 'gitg'

37 questions
518
votes
5 answers

What are the differences between git branch, fork, fetch, merge, rebase and clone?

I want to understand the difference between a branch, a fork and a clone in Git? Similarly, what does it mean when I do a git fetch as opposed to a git pull? Also, what does rebase mean in comparison to merge? How can I squash individual commits…
jackiekazil
  • 5,696
  • 4
  • 21
  • 20
153
votes
9 answers

Can git ignore a specific line?

I'm using git to sync to phonegap while testing on the phone's native browser. As such I have the following line: var isPhoneGap = false; Obviously I change this when building, but is there any way I can set up git to ignore this one line or do I…
Iolo
  • 2,142
  • 3
  • 16
  • 17
33
votes
1 answer

Gitx on mac os Sierra: Objective-C garbage collection is no longer supported

After upgrading to Sierra(10.12) I have an issue with garbage collection within GitX. objc[2253]: Objective-C garbage collection is no longer supported.
Ivan Rostovsky
  • 614
  • 1
  • 8
  • 16
24
votes
4 answers

Git post-commit hook as a background task

I have a script, that I need to run after committing to a project under git revision control. Therefore I created a post-commit hook in my projects .git directory in the subdirectory /hooks, named it 'post-commit' and gave it the following…
GeorgieF
  • 2,687
  • 5
  • 29
  • 43
15
votes
2 answers

how can I do a git pull in the gitg / gitx visual tool?

I can do a push using gitg and push my code to the remote master branch but I can't see any option to do a git pull. I am on Ubuntu 10 and 11
Michael Durrant
  • 93,410
  • 97
  • 333
  • 497
10
votes
2 answers

make GitX open via Terminal for the repo laying at the current path

I usually start gitx via the terminal command $ gitx Normally, when I'm at /path/to/repo as pwd in terminal, gitx was opening that repos log. I don't know if it was an update or if I changed some settings, but since some time, gitx opens blank,…
Nareille
  • 811
  • 2
  • 11
  • 30
8
votes
3 answers

GitX - How do you view a single file's commit history?

Using GitX, how do I view the revision history for a single file? (using the command-line interface preferably) E.g using GitK this is rather simple; $ gitk app/models/activity.rb
GlennR
  • 969
  • 8
  • 6
5
votes
2 answers

Where can I download the latest gitx app (dmg) from gitx branch

The gitx version on trunk is out of date, https://github.com/pieter/gitx/wiki/ but its time consuming to download and compile the latest code from branch. https://github.com/laullon/gitx/tree/ Has any one got a download link to a latest branch…
johndpope
  • 5,035
  • 2
  • 41
  • 43
5
votes
5 answers

Quick guide to get started using Git + GitX with Xcode projects on the mac?

Using Git on the mac feels like a huge pain, and the Git documentation is just huuuuuuuuge. Maybe someone has a top secret blog article or even screencast to share, that explains the basics fairly simple and quickly? Creating a repository. Big…
Proud Member
  • 40,078
  • 47
  • 146
  • 231
5
votes
3 answers

Is there a GitX equivalent for Subversion that allows command-line execution?

I really like being able to the command-line tool gitx from Terminal.app to open GitX and see the Git repository change log that I can scroll through, with nicely formatted diffs for each. Git and Subversion are fairly different, and I know a tool…
Gary S. Weaver
  • 7,966
  • 4
  • 37
  • 61
4
votes
1 answer

GitX with Github, commit not showing up

I've created a few sample changes, staged the file, and committed. The commit is successful, but the changes do not show up on github, is there something else I'm missing?
kylex
  • 14,178
  • 33
  • 114
  • 175
4
votes
2 answers

How can I get rid of unwanted changes in a git branch / pull request?

Common scenario: A contributor sends a pull request containing 1 or 2 useful changes plus a ton of (unwanted by me) whitespace changes made automatically by his IDE. Of course I can tell him to adjust his IDE, and to use tools like GitX to stage…
Steve Clay
  • 8,671
  • 2
  • 42
  • 48
4
votes
3 answers

GitX-L: missing object 0000000000000000000000000000000000000000

I'm getting the following error in GitX-L when opening a git repository: The document “REPO_NAME” could not be opened. An error occured while trying to open file://localhost/Volumes/SERVER/www/REPO_NAME/.git/. fatal: missing object…
Thomas Hunter II
  • 5,081
  • 7
  • 35
  • 54
3
votes
3 answers

Is there a GitX equivalent for Mercurial that allows command-line execution?

I really like being able to the command-line tool gitx from Terminal.app to open GitX and see the Git repository change log that I can scroll through, with nicely formatted diffs for each. Mercurial is so similar that it would be nice to have a…
Gary S. Weaver
  • 7,966
  • 4
  • 37
  • 61
3
votes
3 answers

Git: branch has lost its history?

Something wierd has happened — my develop branch has lost all it's history till the last commit. Can anyone suggest the reason? Last things I've done — installed that forked brotherbard GitX and started to use it (primarily for history viewing, but…
average dev
  • 1,128
  • 7
  • 22
1
2 3