You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
git config --global user.name "Wu Junde"
|
|
git config --global user.email "izzy843794947@gmail.com"
|
|
# Add changes to the staging area
|
|
git add .
|
|
|
|
# Commit changes with a default message
|
|
git commit -m "update"
|
|
|
|
# Push changes to the remote repository
|
|
git push origin master
|