Compare commits

...

2 commits

Author SHA1 Message Date
D. Scott Boggs a31d484949 Add forgotten cd command 2023-09-01 06:21:21 -04:00
D. Scott Boggs d8bc008333 Create empty .gitignore file 2023-09-01 06:20:51 -04:00
2 changed files with 4 additions and 4 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
# Add globs to files you don't want tracked to this file. Common examples
# include "**/node_modules", "*.secret", and ".env*".

View file

@ -13,6 +13,8 @@ the top-right of the Forgejo page for the repository. ![Forgejo fork button](htt
$ git clone https://git.tams.tech/{USER}/{REPO}.git
$ # Via SSH:
$ git clone ssh://git@git.tams.tech:2222/{USER}/{REPO}.git
$ # either way, then do
$ cd {REPO}
```
Note that for private repositories, using HTTPS as the remote means entering
your credentials at each fetch or push action. Remotes can always be
@ -22,10 +24,6 @@ the top-right of the Forgejo page for the repository. ![Forgejo fork button](htt
```console
$ git checkout -b repo-init
```
- Create a `.gitignore` file
```console
$ touch .gitignore
```
- Replace the contents of this README with some information about what the repo is.
- Commit your changes, and push them
```console