- git ls-remote: displays references available in a remote repository along with the associated commit IDs.
- git remote show {remote name}: Manage the set of repositories ("remotes") whose branches you track.
- git branch | git branch -v | git branch -vv
- git fetch {remote name}
- git pull: Fetch from and integrate with another repository or a local branch.
- git checkout -b {branch} {remote name}/{remote branch name}: checks out a new local branch and sets it up to track remote branch
Pry.config.should_load_rc = true
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
# Greed is a dice game where you roll up to five dice to accumulate | |
# points. The following "score" function will be used to calculate the | |
# score of a single roll of the dice. | |
# | |
# A greed roll is scored as follows: | |
# | |
# * A set of three ones is 1000 points | |
# | |
# * A set of three numbers (other than ones) is worth 100 times the | |
# number. (e.g. three fives is 500 points). |
NewerOlder