mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
Add git stash
This commit is contained in:
parent
043d15cb15
commit
6ab52c3aef
1 changed files with 106 additions and 9 deletions
|
@ -21,31 +21,56 @@ This sections aims to answer the most commonly asked questions that users have.
|
|||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git pull
|
||||
source pmm-venv/bin/activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
|
||||
=== ":fontawesome-brands-apple: macOS"
|
||||
|
||||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git pull
|
||||
source pmm-venv/bin/activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
=== ":fontawesome-brands-windows: Windows"
|
||||
|
||||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd C:\Users\YOUR_USERNAME\Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git pull
|
||||
.\pmm-venv\Scripts\activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
=== ":fontawesome-brands-docker: Docker"
|
||||
|
||||
[type this into your terminal]
|
||||
|
@ -65,35 +90,59 @@ This sections aims to answer the most commonly asked questions that users have.
|
|||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git checkout develop
|
||||
git pull
|
||||
source pmm-venv/bin/activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
=== ":fontawesome-brands-apple: macOS"
|
||||
|
||||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git checkout develop
|
||||
git pull
|
||||
source pmm-venv/bin/activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
=== ":fontawesome-brands-windows: Windows"
|
||||
|
||||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd C:\Users\YOUR_USERNAME\Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git checkout develop
|
||||
git pull
|
||||
.\pmm-venv\Scripts\activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
=== ":fontawesome-brands-docker: Docker"
|
||||
|
||||
[type this into your terminal]
|
||||
|
@ -112,34 +161,58 @@ This sections aims to answer the most commonly asked questions that users have.
|
|||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git checkout nightly
|
||||
git pull
|
||||
source pmm-venv/bin/activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
|
||||
=== ":fontawesome-brands-apple: macOS"
|
||||
|
||||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git checkout nightly
|
||||
git pull
|
||||
source pmm-venv/bin/activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
=== ":fontawesome-brands-windows: Windows"
|
||||
|
||||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd C:\Users\YOUR_USERNAME\Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git checkout nightly
|
||||
git pull
|
||||
.\pmm-venv\Scripts\activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
=== ":fontawesome-brands-docker: Docker"
|
||||
|
||||
[type this into your terminal]
|
||||
|
@ -157,34 +230,58 @@ This sections aims to answer the most commonly asked questions that users have.
|
|||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git checkout master
|
||||
git pull
|
||||
source pmm-venv/bin/activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
|
||||
=== ":fontawesome-brands-apple: macOS"
|
||||
|
||||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git checkout master
|
||||
git pull
|
||||
source pmm-venv/bin/activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
=== ":fontawesome-brands-windows: Windows"
|
||||
|
||||
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
|
||||
|
||||
cd C:\Users\YOUR_USERNAME\Plex-Meta-Manager
|
||||
git stash
|
||||
git stash clear
|
||||
git checkout master
|
||||
git pull
|
||||
.\pmm-venv\Scripts\activate
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
These two commands:
|
||||
|
||||
git stash
|
||||
git stash clear
|
||||
|
||||
Will reset any changes you have made to PMM-owned files [YOUR CONFIG FILES ARE NOT AFFECTED]. You shouldn't be doing this, so typically this will not lose any of your work. If you have done this, the assumption is that you know enough about `git` to know how to prevent that from happening.
|
||||
|
||||
=== ":fontawesome-brands-docker: Docker"
|
||||
|
||||
[type this into your terminal]
|
||||
|
|
Loading…
Reference in a new issue