| Instance | Branch |
|---|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Number::seconds = -> | |
| @ * 1000 | |
| Number::minutes = -> | |
| @seconds() * 60 | |
| Number::minute = Number::minutes | |
| Number::hours = -> | |
| @minutes() * 60 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Read: pull the changes from origin/master into my current local branch my_branch | |
| git push origin master | |
| # connect your repository to a remote server | |
| git remote add origin <server> | |
| # create a new branch | |
| git checkout -b feature_x | |
| # switch back |