Skip to content

Commit e9dbeb9

Browse files
Updates
1 parent 6d81aab commit e9dbeb9

File tree

5 files changed

+26
-8
lines changed

5 files changed

+26
-8
lines changed

docs/dev/create-project.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
// todo
1+
# Create a .dotinst for your project
2+
3+
Now it's time to create a .dotinst file for your project. This .dotinst will be configured for your development workflow and should be stored in the dev folder of your project directory.
4+
5+
![image](/addproject.jpg)

docs/dev/overview.md

Whitespace-only changes.

docs/dev/prepare-git-repository.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,25 @@ If not yet done, create an account on GitHub (GitLab works as well) and add a ne
44

55
Clone your new repository to your system. Recommended is to create a folder Projects and clone your repository into it.
66

7-
mkdir Projects
8-
git clone https://github.com/youruser/yourdotfiles.git
9-
cd yourdotfiles
7+
```sh
8+
mkdir ~/Projects # General project folder in your Home directory
9+
git clone https://github.com/youruser/yourdotfiles.git ~/Projects # Clone your dotfiles into the Projects folder
10+
```
1011

1112
Add the recommended folder structure into your project folder
1213

13-
mkdir dev
14-
mkdir -p dotfiles/.config
14+
```sh
15+
cd ~/Projects/yourdotfiles # cd into your repostitory
16+
mkdir dev # For the development .dotinst
17+
mkdir -p dotfiles/.config # For your dotfiles
18+
```
1519

1620
The folder dotfiles includes all of your configurations that you want to include into your dotfiles. It should follor the structure of your home directory.
1721

22+
You can push your changes at any time back to GitHub with
1823

24+
```sh
25+
git add .
26+
git commit -m "Your commit message"
27+
git push
28+
```

docs/dev/sync-files.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
# Keep your file in sync
1+
# Pull files from your project
22

3-
![image](/mainscreen-dev.jpg)
3+
You can work in your project folder of your repositiry and pull changes into the installed dotfiles.
4+
5+
![image](/mainscreen-dev.jpg)
6+
7+
Click on the array icon of your dotfiles and confirm the pull from the project folder.

docs/public/addproject.jpg

134 KB
Loading

0 commit comments

Comments
 (0)