Skip to content

dreamer-design/ciwithfedora

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Tox all Tests Python 3.12 Python 3.13 Python matrix 3.12 Python matrix 3.13


sample ci pipeline from fedora magazine
ref

Git commands

Push to remote

git status                    which files are modified  
git add .                     stage all files, snapshot..changes need re adding  
git checkout main             cd to branch  
git commit -m "Description"   A commit is a change to files on a branch  
git push                      Push commits from local to the remote on GitHub

Pull to local

git reset --hard              reset, will pull from remote  
git restore file              throw away edits, go back to last commit.  
git pull origin main          Update local main with any new changes from the remote


git checkout -b newBranch      create a new branch that remains seperate until merged

Branch merge

git checkout main  
git pull origin main  
git merge feature-login  
git push origin main  

About

ciwithfedora

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages