-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpush_github.bat
More file actions
39 lines (31 loc) · 745 Bytes
/
Copy pathpush_github.bat
File metadata and controls
39 lines (31 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@echo off
cd /d D:\Chemistry-RL
echo === Creating .gitignore ===
(
echo __pycache__/
echo *.pyc
echo *.pyo
echo *.egg-info/
echo build/
echo dist/
echo .pytest_cache/
echo *.pyc
) > .gitignore
echo === Initializing git ===
git init
echo === Configuring git user ===
git config user.name "AliSheheryar"
git config user.email "sheridadaa@gmail.com"
echo === Adding files ===
git add -A
echo === Committing ===
git commit -m "Initial commit: Chemistry-RL multi-step organic reaction prediction environment"
echo === Adding remote ===
git remote remove origin 2>nul
git remote add origin https://github.com/AliSheheryar/Chemistry-RL.git
echo === Pushing to GitHub ===
git branch -M main
git push -u origin main
echo.
echo === DONE ===
pause