EMERGING TRENDS IN SOFTWARE ENGINEERING
DEVOPS
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
How to sync code from server to local?
|
push
|
|
download
|
|
pull
|
|
all the above
|
Explanation:
Detailed explanation-1: -Fetching changes from a remote repository Use git fetch to retrieve new work done by other people. Fetching from a repository grabs all the new remote-tracking branches and tags without merging those changes into your own branches. Otherwise, you can always add a new remote and then fetch.
Detailed explanation-2: -Create a new repository on GitHub.com. Open TerminalTerminalGit Bash. Change the current working directory to your local project. Use the init command to initialize the local directory as a Git repository. Add the files in your new local repository. Commit the files that you’ve staged in your local repository. More items
There is 1 question to complete.