diff --git a/branching/index.html b/branching/index.html index 9b2434d..0a75034 100644 --- a/branching/index.html +++ b/branching/index.html @@ -322,6 +322,21 @@ HelloWorld.hello switch to it so your class renaming changes are isolated. We're going to change each instance of 'HelloWorld' to 'HiWorld'.
+If we want to see last commits on each branch
+ we can run git branch -v
to see them.
+$ git branch -v
+* master 54b417d fix javascript issue
+ development 74c111d modify component.json file
+ testing 62a557a update test scripts
+
+
$ git checkout -b change_class Switched to a new branch 'change_class' diff --git a/remotes/index.html b/remotes/index.html index 3023bc8..7815353 100644 --- a/remotes/index.html +++ b/remotes/index.html @@ -144,13 +144,33 @@ origin git://github.com/pjhyett/hw.git (push) $ git remote -v github git@github.com:schacon/hw.git (fetch) github git@github.com:schacon/hw.git (push) ++ +
If you want to rename remote aliases without having to delete them and add them again
+ you can do that by running git remote rename [old-alias] [new-alias]
. This will
+ allow you to modify the current name of the remote.
+$ git remote add github git@github.com:schacon/hw.git +$ git remote -v +github git@github.com:schacon/hw.git (fetch) +github git@github.com:schacon/hw.git (push) +$ git remote rename github origin +$ git remote -v +origin git@github.com:schacon/hw.git (fetch) +origin git@github.com:schacon/hw.git (push)
In a nutshell with git remote
you can list our
remote repositories and whatever URL
that repository is using. You can use git remote add
to
- add new remotes and git remote rm
to delete existing ones.
+ add new remotes, git remote rm
to delete existing ones or git remote rename [old-alias] [new-alias]
to rename them.