emailconfirmed, nsInternRO, nsInternRW, Administrators
3,356
edits
(custom editor) |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 307: | Line 307: | ||
Create a new branch | Create a new branch | ||
git branch testing | git branch -b testing | ||
you can also add -v to see the latest commit: | you can also add -v to see the latest commit: | ||
| Line 392: | Line 392: | ||
'''Remember that up until this point, we were using git locally. Now, let's create an online repository to work with others''' | '''Remember that up until this point, we were using git locally. Now, let's create an online repository to work with others''' | ||
== Using Remote Git Servers == | == Using Remote Git Servers == | ||
| Line 435: | Line 433: | ||
So, let's add the remote origin (btw, this will also work via ssh) | So, let's add the remote origin (btw, this will also work via ssh) | ||
git remote add origin ssh://myserver.com | git remote add origin ssh://myserver.com | ||
== Push Changes to the Server == | == Push Changes to the Server == | ||