Pagini
Workshops
Parteneri
Git intro:
git config --global user.email "me@here.com" git config --global user.name "John Doe" git config --global color.branch auto git config --global color.status auto git config --global color.diff auto
git clone git@github.com:iriina/GitDemo.git
git status
and look at the changes.git add; git status
git stash; git status
git pull
and manually solve any possible merge conflicts.The following steps will guide you through the process of making a patch for the Linux Kernel.
# Clone linux-next
tree #* git clone git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
git config –global user.name “Firstname Lastname”
git config –global user.email “your_email@youremail.com”
git config –global sendemail.smtpserver smtp.gmail.com
git config –global sendemail.smtpserverport 587
git config –global sendemail.smtpencryption tls
git config –global sendemail.smtpuser your_email@gmail.com
git branch fixes
git checkout fixes
git add <file>
git commit -s
Signed-off-by
line.git format-patch -1
./scripts/checkpatch.pl name.patch
./scripts/get_maintainer.pl name.patch
git send-email -to=maintainer_email_addres -cc=adresa_email1 -cc=adresa_email2
/usr/src/linux/scripts/checkpatch.pl –no-tree -f file
make C=1 <subsystem>