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

learn more… | top users | synonyms | git jobs

1
vote
2answers
27 views

View Changes for unstaged files

I'm trying to view changes for single file that is unstaged. first i use git status to view all unstaged changes Then for example: git diff AndroidManifest.xml But I get this output diff --git ...
0
votes
0answers
27 views

Added git branch to terminal, and now (master) is showing up in all directories

I added the git branch to my terminal and now it is constantly telling me that I am in branch master in all of my directories. I thought maybe git is just installed in my ~ directory, so I ran rm ...
1
vote
3answers
26 views

Ignoring all files in a directory except one in GIT using negate prefix

I want to ignore all the files in a directory except one file. I do the following in my git bash. $ mkdir dir_to_ignore $ cd dir_to_ignore $ vi file_to_ignore.txt # (I put some content and save the ...
0
votes
1answer
19 views

Remove git history for distributing project for bug report?

My iOS app is having a strange core data bug, and I contacted Apple's developer technical support for help. They are asking me to submit a copy of the offending code, so they can see what is going on ...
4
votes
1answer
34 views

Git: content of files not displaying non ASCII characters correctly

I have an Android project and I am using Git in Ubuntu. I can commit my project just fine and read it correctly on github.com But when I download it on Windows or Mac, I get some characters encoded ...
2
votes
1answer
55 views

Fix missing commit

I'm new to Git. We're using Bonobo Git Server as the back-end and TortoiseGit for the client. When I do a pull I get the following in TortoiseGit - POST git-upload-pack (328 bytes) fatal: protocol ...
0
votes
1answer
63 views

How do i do a git pull?

Please..can someone explain this? So...git pull does not work. Then I specify the branch to pull. git pull development fatal: 'development' does not appear to be a git repository fatal: The remote ...
0
votes
2answers
86 views

How to become more productive in git

I am starting git and I am looking into being more productive. My experience was in Clearcase (mainly Windows version). I am looking for good patterns to increase productivity. To give an example I ...
1
vote
0answers
12 views

Git Svn - Workflow for a Readonly SVN repos

Basically, we have a situation where we are working with client teams across the globe. Now, one of the clients have provided us with read-only access to their svn server, where their developers ...
1
vote
2answers
36 views

Does pulling from a remote give the branches a different history?

If two people are working on branches that are tracking the same remote branch and one pushes first, then the second cannot push until they've updated their branch with the other person's changes. So ...
0
votes
1answer
27 views

Git: Remove commits which only changes a timestamp

I'm looking for a proper solution to remove only-timestamp-changes in the history of my repository . If you wonder what I'm doing here: I'm trying to build a git repository based on downloaded ...
1
vote
2answers
16 views

git alias to delete local and remote

I'm trying to write an alias to delete both a local and remote branch at the same time, but I can't figure out why the syntax is not working. In ~/.gitconfig, I've tried the following aliases, but ...
1
vote
2answers
32 views

want to automatically squash 20 commits

My topic branch is about 20 commits ahead of where I branched from. I would like to automatically squash all these commits into the first commit after the branch. I know I can do this interactively ...
3
votes
2answers
24 views

Git workflow, differences between devel and production branches on ignoring files

Say you have a develop branch and a master branch (master corresponding to production). In the develop branch you might have a test folder, a scripts folder that you want to version control. But ...
0
votes
1answer
25 views

How to access Git --mirror of rep

If we backup the git repos with the following commands git clone --mirror gitolite@git:projectname.git how can I access the project.. if I go into projectname it looks like a server repo NOT one ...
1
vote
2answers
24 views

Go back N commits in Git to find commit that causes test regressions

Is there a command that will let me checkout a commit based on its distance from the current commit instead of using commit IDs? Use Case Basically I am thinking of setting up a cron job type ...
-2
votes
2answers
25 views

Make an old commit + changes the new master

So I checked out a commit from 3:00 p.m. yesterday I want to make it the new master, effectively ignoring all commits that happened after 3:00 p.m. How do I do this?
0
votes
4answers
61 views

How to clone a git repo piecemeal

I'm cloning the Linux kernel repository. The repository is so huge and my network is so slow that I can't clone it all at once. That may keep my computer on for a whole week. If I stop the cloning ...
0
votes
2answers
16 views

Ubuntu - How to commit a whole Android project to a local respository?

Being fairly new to Linux and very new to Git, this is proving to be.. problematic. Can someone please direct me to or tell me the steps required (Ideally step by step) to do this? I have a ...
0
votes
1answer
32 views

cannot see updates in Git remote repository

I have created a remote git repository on a remote server in this place: /home/mysite/public_html/git/mysite.git and set /home/mysite/public_html as a remote working directory specified. On my local ...
2
votes
2answers
47 views

Add a line to the git commit message while I'm editing code

While editing code in VIM I would like to add small one-line notes to the Git Commit message. Sometimes I find it simpler to to fix a small issue right when I see it rather than to comment it or ...
1
vote
1answer
48 views

Git merge with lost history

I've developed a feature on a branch. During the development, we moved to a different git host, and some of the commits were merged onto the new host. I'm now trying to merge the rest back, and ...
1
vote
1answer
10 views

Git on windows: how to get pre-receive hook to run on the server using a file share

Unfortunately I have to run git on Windows. I am sharing the git repository using a windows share (e.g. //ip address/GitRepo.git) The problem is that git seems to treat this as a local path and runs ...
1
vote
1answer
21 views

How can one inter actively discard modifications (similarly to `git add -p`)

How can one discard modifications from tracked files similarly to what git add -p does with the index? That is I have modified a tracked file and want to undo only parts of the file?
0
votes
1answer
19 views

How to avoid typing passphrase for git pull executed under www-data

I stuck on the operation when I need to execute Git pull command running from PHP script. (user is added into www-data group) without passphrase typing. I found that this can be solved using command: ...
0
votes
0answers
29 views

Why git push behaves like git push --force?

Why does git push result in forced update, causing lost commits on the origin? What can be done to prevent this? client side: git version 1.8.2.2 push.default set to simple server side: gitlab ...
1
vote
1answer
23 views

android project with sherlock actionbar git-checkout and go possible?

I'm working with several android/iOS projects that are being modified by different developers, designers, QA people and even Clients. With iOS projects is so much easy to have the whole project ...
0
votes
0answers
21 views

Permanently ignore local changes to tracked files

I have a folder with a template project in my repo. After push, the folder was added to .gitignore. This works great regarding new files, but it still tracks modified ones. I know about the option to ...
2
votes
0answers
30 views

How do I merge git repositories with related branches

For historical reasons I currently have the following project structure: part0: master branch0 branch1 part1: master branch0 branch1 The binaries of the project are built by checking out ...
0
votes
2answers
48 views

What is the equivalent of git add - u for removing files?

While git add -u stage all modified tracked files, it doens't remove deleted files. I tried "git rm -u" but it didn't work. What is the git command for removing deleted tracked files ? EDIT: with ...
0
votes
0answers
9 views

using Git repository on Virtualmin

I have a VPS with CentOS 6.3 and Virtualmin on it. I have installed Virtualmin git module according to this manual http://www.virtualmin.com/documentation/web/git I created a new repository for a ...
1
vote
1answer
24 views

Command to list branches on particular server

Currently, I have two servers 'origin' and 'stash'. If I've to see all branches respective to 'stash' or 'origin' server, how can I see? Following command lists branches on all servers: git branch -a ...
0
votes
1answer
16 views

git submodule update specific submodule only

So, updating all my submodules is done by running git submodule foreach 'git pull origin master' How do I update a specific submodule, located in say bundle/syntastic, without updating any other ...
1
vote
0answers
23 views

Use Ruby with no-root user in Gentoo [migrated]

I am just started to update my Gitlab on Gentoo server (4.2 > 5.0). For new version Gitlab need to use Ruby with user 'git'. # check ruby version for git user ( 1.9 required!! ) # gitlab shell ...
1
vote
1answer
16 views

java apis for remote git repository access

Is there any java api available that can be used to access version history of a remote git repository when url is provided. I am looking for something equivalent to svnkit. I have looked into javagit ...
1
vote
1answer
29 views

How do I configure Eclipse to use an existing git repository with existing source code?

I have Eclipse Juno with EGit and a project that I've been working on for a while. I've decided to move it to Git, so I created a Github account and downloaded and installed the program. The ...
2
votes
3answers
23 views

Forked GIT submodule, and changed source URL. But clone still pulls old source URL?

I have a submodule in my git project, which I have made some changes to, and uploaded to my own git server to fork it. I've changed the source URL in the master git repository to the new submodule's ...
0
votes
0answers
19 views

Every pull request to a repo that was forked from another, contains every commit since the fork

I have a git repo we'll call RepoA. I forked RepoA to RepoB. Every pull request I make for RepoB contains every commit (even commits already merged into master, or commits from other people in other ...
1
vote
2answers
33 views

Create a new git repo off of a branch in a directory

In my Git repo, I have a directory A. In a branch, I've created a directory B under A. Is there a way to create/initialize a new Git repo in directory B? Would copying that directory, clearing all of ...
0
votes
1answer
22 views

How to add already cloned projects as submodules?

I have in a folder a large number of projects that I cloned for quite some time; recently I moved this whole folder into one of my repos and would like to convert these cloned projects into submodules ...
3
votes
1answer
36 views

Is rebase and merge the same thing? Why are there 2 different procedures to do one thing?

I am new to git and I am trying to understand the rebase. For me the merge process is easier to understand since my experience is in Clearcase. So first of all I can not understand if rebase is ...
1
vote
0answers
34 views

GitHub - completely messed up the local files of gitHub in my computer [migrated]

I created a repo in the wrong folder. Meaning the User folder in OS where all the user folders are from pics, videos to documents. So I pushed that all to gitHub without knowing and now I can't create ...
4
votes
3answers
31 views

Modifying Github repo that I am forked from

I set up my fork on our corporate repo but I accidentally forked from another user's fork. While it works ok I would like to change it to be forked form the base repo like it should be. I have made ...
1
vote
1answer
31 views

git: how to fix commit in both branches

Being in branch B, I realized I need to fix commit that exists in both branches A and B. Here what I tried to do, but with no result (only fourth commit's hash changes): #!/bin/bash -eu rm -rf 1 ...
0
votes
0answers
20 views

Can't push to Heroku after git restore

I had to restore my master branch from github a couple weeks ago and since then I've been receiving an error that states "Your key with fingerprint... is not authorized to access my app." I've ...
4
votes
1answer
36 views

How do I make git show diff when rewording a commit message during rebase -i?

I always use git commit --verbose. Is there an equivalent option/setting that will make git show me the diff when I'm rewording a commit message during git rebase --interactive?
0
votes
0answers
13 views

How to deploy to Heroku with a different Gemfile / BUNDLE_GEMFILE

I have an application that is tested on travis ci with 4 different themes which are configured using different Gemfiles via the BUNDLE_GEMFILE environment variable/ gemfile: option on travis. ...
0
votes
1answer
27 views

How do I add libraries to my git repository but not track them?

I am using the DataTables jquery plugin in a project. I cloned the project into my libs/ folder and added it to my .gitignore file like this: jslibs/DataTables/ When I cloned my own repo on another ...
0
votes
1answer
21 views

Push from local copy to remote shows up as changes

I set up a repository (git init) on an existing unversioned sourcetree in production (don't tell me). After the initial import commit I cloned the repo on my dev machine and started editing. After ...
0
votes
2answers
31 views

Restart rails server on git commit

I'm setting up a shared development server for a Ruby on Rails project. Is there a good way to set it up to restart, or reload the code every time someone pushes a commit to the master branch (for ...

1 2 3 4 5 547