Tagged Questions
21
votes
6answers
10k views
[Git]How can I make my local repository available for git-pull?
I have a working copy repository that I've been working in no problem; the origin for this repository is on GitHub.
I'd like to make my working copy repository available as the origin for my build ...
12
votes
1answer
2k views
How can I pull an existing heroku app to new location for development?
I currently have the latest version of my code on another computer that I want to develop from (Home computer and laptop for when I'm out and about) I set up heroku for my app on my laptop. Now I need ...
3
votes
3answers
206 views
is there a simple way to know which files will be updated in the next 'git pull'?
i would like to know which files would be updated (and hopefully the changes that would occur) if i'd do a 'git pull'...
is
git stash
git fetch
git diff origin/master
git stash apply
the answer ...
3
votes
3answers
834 views
Git: How to move back and forth between commits
I have a newbie question about Git:
I need to move back and forth in a history of a branch.
That means, I need to get all the files to the state they were in in some old revision, and then I need to ...
2
votes
1answer
40 views
With git how can i merge a repository that has already been merged?
I have a repository that i pulled the changes for, so now it is up to date with the remote repository. Except that now i realized that i needed to pull all of that repositories changes and keep none ...
1
vote
2answers
626 views
do a git pull to overwrite local changes
Ok, there has certainly been posts around for this, but I actually did a commit because i thought it was the right thing to do.
So, I have 2 repos, one development and one production. I had to edit ...
1
vote
3answers
233 views
How do I pull a remote branch in git without conflicts?
There is a branch on remote I would like to work on. It is old and I no longer have an old copy of it on my local machine. It is really far behind master. Whenever I attempt to pull it I get ...
0
votes
1answer
16 views
GitHub maintain repo within repo directory
Im super new with using GitHub.. I cloned in a repo at html/mycms (repo is mycms) and now I have another repo I would like to maintain within.. I cloned it in at html/mycms/system/docs (repo is called ...