When you have enough and enough with git, when the branch is ahead, and you want to discard everything locally. Run:
git fetch origin
git reset --hard origin/main
When you have enough and enough with git, when the branch is ahead, and you want to discard everything locally. Run:
git fetch origin
git reset --hard origin/main
Download and install for the Free version:
cd ~/Downloads/ unzip ./DaVinci_Resolve_20.0.1_Linux.zip chmod +x ./DaVinci_Resolve_20.0.1_Linux.run sudo ./DaVinci_Resolve_20.0.1_Linux.run -i
sudo apt update
sudo apt install intel-opencl-icd
After going through all the steps, if it doesn't start open a terminal and start resolve with:
/opt/resolve/bin/resolve
symbol lookup error: /lib64/libpango-1.0.so.0: undefined symbol: g_string_free_and_steal
sudo cp /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 /opt/resolve/libs/
symbol lookup error: /opt/resolve/bin/../libs/libgdk_pixbuf-2.0.so.0: undefined symbol: g_task_set_static_name
cd /opt/resolve/libs
sudo mkdir not_used
sudo mv libgio* not_used
sudo mv libgmodule* not_used
Create a new branch from develop
git pull
Replace:
<branchStrategy> with feature, bugfix, release, hotfix
<module> with backend, frontend, ml, docs, infrastructure
git checkout -b <branchStrategy>/<module>-<description> develop
Example: git checkout -b feature/backend-pdf-handler develop
Make your changes on the files, and upload to the repo.
git add <file>
Replace <type> with a Commit Message type, check the top table Commit Message Type.
git commit -m '<type>: Add basic pdf handler.'
Example: git commit -m 'feat: Add basic pdf handler.'
git status
git push --set-upstream origin <branchStrategy>/<module>-<description>
Example: git push --set-upstream origin feature/backend-pdf-handler
Write/update tests
Update documentation
Submit a pull request