Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
1k views

How do I recover/resynchronise after someone pushes a rebase or a reset to a published branch?

I am making this question so I can link to it later. There is often talk about how you should never rebase published work and it’s dangerous, etc. However, I have not seen any recipes posted for how ...
6
votes
1answer
97 views

Workflow strategies for mitigating merge conflicts from topic branches

I'm right on the cusp of selling git to my higher-ups. They're listening to us talk about it, anyway. There's one thing I'm unsure of, and I'd like to see how people deal with this. Basically my ...
4
votes
1answer
91 views

Git workflow when you cant push or pull

This is a recurring question for me, but I'd like to reiterate. Quickly explain my situation: I am in an environment where I don't have a a git server, nor a shared partition or any common point ...
4
votes
1answer
78 views

How to organize additional project material separately with Git?

I want all project files like source code to be part of the repository. For simplicity reasons all work is done on the development branch. Furthermore, I want to include additional project material ...
3
votes
6answers
574 views

Git Workflow: Without a server

git is supposed to be a decentralized system, but all the tutorials and best practice workflows I have found on google suggest using a server (usually github, or else set up your own) I am using git ...
3
votes
1answer
116 views

Release numbering in a git workflow

I've come across the following excellent blogpost on a git workflow model that works with release, develop, feature and bugfix branches: http://nvie.com/posts/a-successful-git-branching-model/ It ...
3
votes
1answer
263 views

Best practice for modifying an already-merged git topic branch

We use the following git workflow at my company when coding up a new story: Create a topic branch off of master (production/stable) Create as many commits as desired to implement feature. do a git ...
2
votes
1answer
122 views

Using Git Locally then merging and checking into StarTeam

My client currently requires us to use StarTeam for checking in our code changes. I would like to pull all the code down from StarTeam and setup a local Git repository so that I might take advantages ...
2
votes
3answers
205 views

How should I organize my Git repositories and branches to create multiple versions of a website?

I'm an SVN user hoping to move to Git. I've been reading documentation and tutorials all day, and I still have unanswered questions. I don't know if this workflow will make sense, but here's my ...
2
votes
1answer
678 views

Git create a branch from another branch

I'm getting crazy with Git :) I have 2 branches : master and dev I want to create a "feature branch" from the dev branch Currently On branch dev, I do : $ git checkout -b myfeature dev ... ...
1
vote
1answer
58 views

What should my automated git update process look like?

I come from a subversion background and recently my company made the switch to git. I used to have a cron entry, on my laptop, to update the multitude of checkouts, on a nightly basis. This way, I ...
1
vote
0answers
56 views

GIT_WORK_TREE not only updating 1 file

I have set up a two bare git repository's on my server with file paths like so: /git/project.git/ /git/project2.git/ I then have added two branches dev and live. I then added the following ...
1
vote
3answers
125 views

Understanding the Git Workflow

Please have some patience as I am still trying to find my way around with git. The whole practice of forking and branching all over the place makes it a bit harder to grok what's going on. I am ...
1
vote
3answers
454 views

Git subtree workflow

In my current project I'm using an open source forum ( https://github.com/vanillaforums/Garden ). I was planning on doing something like this : git remote add vanilla_remote ...
1
vote
3answers
774 views

setting up git repository on local machine

How can I setup a git repository on a local system ? (I am on a windoze box) This is the setup I am trying to achieve: (everything is on my local machine) host folder (which acts like central ...
1
vote
1answer
163 views

how to setup this git workflow?

I want to be able to setup the following git workflow but it confusing as to which are the correct commands to use - rebase, remote, etc? Clone an open source project where I only have read only ...
1
vote
1answer
590 views

github like workflow on private server over ssh

I have an server (available via ssh) on the internet that my friend and I use for working on projects together. We have started using git for source control. Our setup currently is as follows: ...
0
votes
2answers
79 views

Deploy git branches

After struggling with and sorting out a workflow for web development with git, I've been tasked with adding in a staging server at the last second. We develop/test locally and push out to a repo, and ...
0
votes
1answer
531 views

git-flow for multiple staging / production environments

I am trying to apply git-flow for a project with multiple websites that share a same code base. I currently use many feature branches, one develop branch, one support branch, and MANY production ...
0
votes
1answer
30 views

How do you alter an object's historical content in a git repository?

I have a local git repository that I eventually plan on publishing as open source. I recently noticed that one of the files has a password in it. Obviously, I need to strike that password from the ...
0
votes
3answers
95 views

What would be the best workflow to do refactorings intermingled with new features in Git?

I've been using Git as source code management tool. For now my workflow is simple: think about a minimal new feature/refactoring code it review the diff with HEAD commit I would like to improve ...