The FAQ maintained by Github covers most stumbling blocks, some other tips and tricks supplied here.
Add _site
to .gitignore
. The generated site should not be uploaded to Github since its gets generated by github.
#include <iostream> | |
#include <vector> | |
#include <map> | |
using namespace std; | |
class Data{ | |
int an,zi, luna; | |
public: | |
Data( int a=0, int z=0, int l=0){ | |
an = a; | |
zi = z; |
The FAQ maintained by Github covers most stumbling blocks, some other tips and tricks supplied here.
Add _site
to .gitignore
. The generated site should not be uploaded to Github since its gets generated by github.