Answered step by step
Verified Expert Solution
Question
1 Approved Answer
>> Please answer all Questions 13. You decide you want to host your repository on Github. You create a new repository on Github to house
>> Please answer all Questions
13. You decide you want to host your repository on Github. You create a new repository on Github to house your local repository. Github gives you a remote URL of https://github.com/Gary/my_cool_project.git'. What is a command to link your local repository with your new remote repository? Name this remote repository my_new_remote YOUR ANSWER GOES HERE 14. You realize the name 'my-new-remote is a strange name for a remote repo , and you decide you want to rename it to origin. What is a single command to rename your remote from "my_new_remote" to origin? YOUR ANSWER GOES HERE 15. You have created a 'README. md' for your project and decide you want to add it to your remote repository, first we must add the file to the staging area What is a command to add the file README.md to the staging area? YOUR ANSWER GOES HERE 16. Excellent! You decide you are ready to make your first commit, what is a single command to make a commit with the commit message of "added a readme"? YOUR ANSWER GOES HERE 17. Lastly, you are satisfied with your changes and you decide you want to push to the remote repository. Recall the name of our remote was origin The branch we want to push to is the master branch What is one command to push your commit to the master branch of your remote repository named origin? YOUR ANSWER GOES HERE 18, we now want to tag the current commit as final, so that we can refer to it easily in the future. What is one command that will set the tag for the current commit as final? YOUR ANSWER GOES HERE 19. What is one command that will list all the available tags for the current git repository? YOUR ANSWER GOES HERE 20. Which directory stores all the data necessary for git to keep track of your project and its historyStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started