This is a paragraph, which is text surrounded by whitespace. Paragraphs can be on one
- We have two servers, one named staging, one named production.
- We have made changes on the staging branch to:
- Use an alternate authentication source
- Display more complex errors
- Communicate with the staging server
- We have branched from staging to implement a new feature (feature-easypost)
- Generate Github SSH keys
- Configure Git
- Username & email
git config --global user.email "[email protected]"
git config --global user.name "Billy Everyteen"
- Default Commit tool (sublime)
git config --global core.editor "'C:/Program Files/Sublime Text 3/subl.exe' -w"
- Set git push strategy
git config --global push.default matching
- Username & email
- Last (-n)/gitconfig
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
// CONST's | |
int DS_pin = 8; | |
int STCP_pin = 9; | |
int SHCP_pin = 10; | |
int C1_pin = 1; | |
int C2_pin = 2; | |
int C3_pin = 3; | |
int C4_pin = 4; |
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
# Git Shortcuts | |
alias g='git' | |
alias gs='git status' | |
alias gst='git status -sb' | |
alias ga='git add' | |
alias gau='git add -u' # Removes deleted files | |
alias gp='git pull' | |
alias gpu='git push' | |
alias gc='git commit -v' | |
alias gca='git commit -v -a' # Does both add and commit in same command, add -m 'blah' for comment |