# Directories

```
/
├── assets                  -> will contain icons and screenshots
│   └── icon-256x256.png    -> the icon that will be used on the plugin page
│
├── branches                -> that's the developpement branch, not 
│   │                          taken in account, do what you want in there
│   └── main_dev/
│       └── my_plugin.php
│
├── tags                    -> the existing stable versions of the plugin
│   └── 1.0
│       └── my_plugin.php
│   └── 1.1
│       └── my_plugin.php
│
└── trunk                   -> The last version of the plugin (might be an alpha, not stable)
    │                          but NOT DEV
    └── my_plugin.php
```

__Developpement__ should be made in the `branches` folder, then, once the __new
feature__ is done and working, copy the whole plugin to `trunk`, and once it's
__stable__ for sure, copy it to a new version in the `tags` folder

# Commands

To add new files:
```
svn add <files>
```

To force add new files:
```
svn st <files> | grep ? | tr -s ' ' | cut -d ' ' -f 2 | xargs svn add
```

To commit the changes:
```
svn ci -m 'commit message'
```

To check if it's up to date:
```
svn up
```
