...
If you are using the Skara CLI tools then and have the branch you want to publish currently checked out, then you can just run the command git publish
Commits
How do I make a commit?
First ensure that you have configured your full name, email and editor. You must then add the files that you want to be part of the commit (even files that are already tracked by Git):
Code Block | ||
---|---|---|
| ||
$ git add path/to/file1 path/to/file/2 |
You can inspect the changes that will be part of the commit by running the following command:
Code Block | ||
---|---|---|
| ||
$ git diff --staged |
You can then create the commit by running the following command:
Code Block | ||
---|---|---|
| ||
$ git commit |
The above command will open your editor where you willl the commit message. If the commit message only is a single line then you can pass it directly to commit command: git commit -m 'Your commit message'
.
GitHub
Configuration
How do I setup two-factor authentication (2FA)?
...