Wiki

Clone wiki

Learn D3 / Home

GitHub readme

  • Home: $ ~
  • Make folder under Users/David: $ mkdir folderName
  • Travel to folder: $ cd ~/FolderName
  • Clone repo: $ git clone https://hrojas@bitbucket.org/hrojas/bb101repo.git
  • List all files in folder: $ ls -al FolderName/
  • List all folders under root: $ ls ~/FolderName
  • Remove folder: $ rm -irf FolderName/
  • status of current repo: $ git status
  • Add file before commit: $ git add FileName
  • Add all files before commit: $ git add -A
  • Commit files: $ git commit -m "Enter commit message"
  • Push files to BitHub: $ git push -u origin master

Updated