Skip to content

anderskraken/phase-0-gps-1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

phase-0-gps-1

334 git status

If the directory is a git controlled, this command will let you know if any of the files have been modified or have been staged to commit.

335 git clone https://github.com/anderskraken/phase-0-gps-1.git

Will download the files from a repository on github and create the same repository on your local computer.

336 ls

List files and directories in the current directory.

337 cd phase-0-gps-1

Change directory

338 ls

339 touch awesome_page.md

create the file with the awesome_page.md

340 git add awesome_page.md

this command stages the changes in "awesome_page.md" to be committed.

341 git commit -m "Add awesome page"

this commits the staged changes to git, with the string as a message

342 git status 343 git checkout -b add-command-log

this changes the current branch to the argument. the flag -b creates the branch

344 git checkout --help 345 ls 346 subl .

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published