-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAllMyCommands
More file actions
21 lines (21 loc) · 787 Bytes
/
AllMyCommands
File metadata and controls
21 lines (21 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
git init
git add -A
git commit -m "Added 3 files"
git log
git rm File3.1
git commit -m"Deleted File3.1"
git checkout <commitnumber> -- File3.1
git commit -m"Restored File3.1"
git remote add origin https://github.com/raneemsultan/Sprint0.git
git remote -v
git push -u origin master
echo "Title: Sprint 0 , Getting Started : This repo contains the 4 text files required for this sprint, Author: Raneem Sultan 37-0917, Acknowledgments: book Chacon, Scott, and Ben Straub. Pro Git. Apress,
> 2014." > README.md
git checkout ReadMe
git add README.md
git commit -m"Created README.md file and added it to a new branch called ReadMe"
git checkout master
git merge ReadMe
git add AllMyCommands.txt
git commit -m"Added AllMyCommands file containing terminal commands used in this sprint"
git push