Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. ├── css
  2. │ ├── custom.css
  3. │ └── main.css
  4. └── index.html
  5.  
  6. git init
  7. git add -A :/
  8. git commit -m "initial commit"
  9. git push ssh://username@servername:path/to/www master
  10.  
  11. echo css/custom.css >> .gitignore
  12. git rm --cached css/custom.css
  13. git commit -am "removed custom.css from being tracked"
  14. git push ssh://username@servername:path/to/www master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement