cd /opt/buzzfeed/mono
git checkout master
git fetch origin master
git rebase origin/master
####try starting rig*
##Create a new branch associated with your card
git checkout develop
git pull origin develop
git checkout -b [my-lovely-branch]
##Commit and push your branch
git add .
git commit -m 'my commit message'
git push origin [my-lovely-branch]
##create a new branch associated with your card | |
git checkout develop; | |
git pull origin develop; | |
git checkout -b 'my-lovely-branch'; | |
##work on your branch locally | |
## | |
git fetch -a | |
git checkout [release_branchname] | |
git checkout -b [your_work_branchname] |
<html> | |
<head> | |
#fade { | |
transition: all 2s ease-in-out; | |
} | |
</head> | |
<body> | |
<div id=fade>Looks good!</div> | |
</body> |
git status
git checkout [release_branch_name]
git pull origin [release_branch_name]
git checkout -b [working_branch_name]
git add .
git commit -m 'descriptive commit message'
git status
git checkout [release_branch_name]
<style type=text/css> | |
a.button1 { | |
font-family: arial; | |
text-decoration: none; | |
display: block; | |
height: 40px; | |
padding: 10px 20px; | |
line-height: 23px; | |
font-size: 13px; |