mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 05:31:15 +00:00
README: Provide instructions to update default branch
Adapted from gnome-software
This commit is contained in:
parent
403cfb9755
commit
eb6f82495e
1 changed files with 13 additions and 0 deletions
13
README.md
13
README.md
|
@ -15,6 +15,19 @@ for building GNOME apps with Flatpak and GNOME Builder.
|
|||
|
||||
Commit messages should follow the expected format [detailed here](https://wiki.gnome.org/Git/CommitMessages).
|
||||
|
||||
### Update default branch
|
||||
|
||||
The default development branch of nautilus has been renamed to `main`. To
|
||||
update your local checkout, use:
|
||||
```sh
|
||||
git checkout master
|
||||
git branch -m master main
|
||||
git fetch
|
||||
git branch --unset-upstream
|
||||
git branch -u origin/main
|
||||
git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/main
|
||||
```
|
||||
|
||||
## Runtime dependencies
|
||||
- [Bubblewrap](https://github.com/projectatomic/bubblewrap) installed. Used for security reasons.
|
||||
- [Tracker (including tracker-miners)](https://gitlab.gnome.org/GNOME/tracker) properly set up and with all features enabled. Used for fast search and metadata extraction, starred files and batch renaming.
|
||||
|
|
Loading…
Reference in a new issue