Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Whats the best way to work with Github and multiple computers?

I am developing some school grading software and decided to use Github to host the project. After building some code on my Ubuntu box I pushed it to Github and then cloned it down to my MacBook Pro. After editing the code on the MBP I pushed it back to Github. The next morning I tried to update my repo on the Ubuntu box with a git pull and it gave me all kinds of trouble.

Whats the best way to work in this situation? I don't want to fork my own repo and I don't really want to send myself emails or pull requests. Why can't I just treat Github like a master and push/pull from it onto all of my personal repos on different computers?

like image 944
Richard Hurt Avatar asked Nov 20 '08 16:11

Richard Hurt


People also ask

Can you use GitHub on two computers?

You need to clone the repository on your second computer. Now you can use git pull and git push to keep your local repository in sync with the one on GitHub. Show activity on this post. You want to checkout the repository on the other computer, you do not want to fork it.

Can multiple people work on the same file GitHub?

So you can also have collaborators working on different lines within the same file and GitHub will be able to weave those changes into each other – that's it's job! It's when you have collaborators working on the same lines within the same file that you can have merge conflicts.

Can two people use the same GitHub account?

You can either use the same key on both or add multiple keys to your github account. If you attempt to use the same account for multiple people though it might get messy if you don't have a solid workflow.


1 Answers

I'll assume your problem was that the machine on which you first created the repo crapped out when you tried to issue the git pull command.

When you clone an existing git repository (like you did on your 2nd machine, the MacBook Pro), you're automatically set up to so your git pull commands will automatically merge the remote with your local changes.

However, when you initially create a repo and then share it on a remote repository, you have to issue a few commands to make things as automated as a on cloned repo.

# GitHub gives you that instruction, you've already done that
# git remote add origin [email protected]:user_name/repo_name.git

# GitHub doesn't specify the following instructions
git config branch.master.remote origin
git config branch.master.merge refs/heads/master

These last few instructions configure git so future git pull's from this repo will merge all remote changes automatically.

The following is a bit of shameless self-promotion. If you use Ruby, I have created a Ruby-based tool that lets you deal with all these kinds of things with git remote branches. The tool is called, unsurprisingly, git_remote_branch :-)

If you don't use Ruby, my tool is probably gonna be too much of a hassle to install. What you can do is look at an old post on my blog, where most of the stuff grb can do for you was explicitly shown. Whip out your git notes file :-)

like image 68
webmat Avatar answered Nov 11 '22 05:11

webmat