Examples of using Run the git in English and their translations into German
{-}
-
Colloquial
-
Official
-
Ecclesiastic
-
Medicine
-
Financial
-
Ecclesiastic
-
Political
-
Computer
-
Programming
-
Official/political
-
Political
Alternatively, you can run the git fetch command.
Run the git config-l command to verify your configuration.
To show only commit IDs and messages, run the git log--pretty=oneline command.
Run the git branch command, specifying the--all option.
Using the HTTPS URL you copied, run the git clone command to clone the repository.
Run the git push command to push your changes to AWS CodeCommit.
To see the differences between two commits, run the git diff command and include the two commit IDs.
Run the git init command to initialize Git version control in the directory.
From the/tmp directory, using the SSH URL you copied, run the git clone command to clone the repository.
Run the git remote set-url command to update the remote URL to use the new repository's name.
In the Bash emulator, using the SSH URL you just copied, run the git clone command to clone the repository.
Run the git remote show remote-name command, where remote-name is the alias of the AWS CodeCommit repository by default, origin.
To check whether you already have Git installed, run the git--version command as described in this step.
In Terminal, run the git config command to find the Git configuration file(gitconfig) where the Keychain Access utility is defined.
From the command prompt or terminal, switch to your local repo directory and run the git remote-v command.
After you have made your changes, run the git add and git commit commands to stage and commit them.
From the terminal or command line, at the directory location where youwant to clone the repository, run the git config--local user.
To clone the repository, run the git clone command, supplying the repository's clone URL, shown here as CLONE_URL.
At the command line or terminal,in the directory where you want to clone the repository, run the git clone command with the HTTPS clone URL.
To delete the branch from the local repo, run the git branch-D branch-name command where branch-name is the name of the branch you want to delete.
From the local repo on your computer, at the terminal or command line, make sure youhave pulled the latest changes to the repository, and then run the git checkout command, specifying the source branch of the pull request.
Run the git remote set-url--add--push origin git-repository-name command where git-repository-name is the URL and name of the Git repository where you want to host your code.
To push the new branch from the local repo to the AWS CodeCommit repository, run the git push command, specifying both the remote-name and the new-branch-name.
Run the git config command twice: once to configure Git to use the AWS CLI credential helper with the AWS CLI profile you just created, and again to use HTTP.
If you want to integrate changes that have been made to the destination branch into the source branch(forward integration), run the git merge command, specifying the destination branch, to merge those changes into the source branch.
To delete the branchfrom the AWS CodeCommit repository, run the git push remote-name--delete branch-name command where remote-name is the nickname the local repo uses for the AWS CodeCommit repository and branch-name is the name of the branch you want to delete from the AWS CodeCommit repository.
From the terminal or commandprompt on your local computer, run the git clone command with the--mirror option to clone a bare copy of the remote repository into a new folder named aws-codecommit-demo.
Create a new branch in your local repo by running the git checkout-b new-branch-name command, where new-branch-name is the name of the new branch.
These patterns are relative to the directory in which you ran the git lfs track command.