Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
languagebash
$ 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
languagebash
$ git diff --staged

You can then create the commit by running the following command:

Code Block
languagebash
$ 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)?

...